Angular 5 Material Snackbar panelClass config

后端 未结 4 1120
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-04 19:16

I am trying to add a panelClass config to the Angular Material Snackbar.

I wrote the following code, by following documentations from the official websites.

4条回答
  •  無奈伤痛
    2021-01-04 19:46

    In angular 7 using ::ng-deep in front of class worked for me.

    ::ng-deep  .snackBar-fail {
        color: #ffffff !important;
        background-color: #cc3333 !important;
    }
    

提交回复
热议问题