MatSnackbar
モジュールをページの上部に表示しようとしています。
config
を使用してcustomclass
を追加しようとしました。ここに私のコードがあります:
component.ts
let config = new MatSnackBarConfig();
config.duration = 50000;
config.panelClass = ['red-snackbar']
this.snackBar.open("Please fill all the details before proceeding.", null, config);
。css
.red-snackbar{
position: absolute !important;
top: 54px;
}
しかし、それは機能していません。 MatSnackbarの位置を変更することは可能ですか?