Материал Цвет Снэк-бара не меняется
import { Injectable } from '@angular/core';
import { MatSnackBar } from '@angular/material';
@Injectable({
providedIn: 'root'
})
export class SnackbarService {
constructor(public snackBar: MatSnackBar) {
}
show(message: string, type?: string, duration?: any) {
this.snackBar.open(message, type, {
duration: duration ? duration : 2000,
panelClass: [type],
});
}
}
это этот вызов, => this.snack.show(response.message, "success", 3000)
Класс CSS,
.info {
background: #2196F3;
}
.success {
background: #1DE9B6;
}
.error {
background: #B00020;
}
но ни один изКлассы CSS применяются к любому Snakbar, который появляется