Answers for "matsnackbar background color from service"

CSS
0

matsnackbar background color

/*In the ts file:*/
this.snackBar.openFromComponent(SnackComponent, {
      data: {
        message: 'Hello, snackbar!'
      },
      duration: 2000,
      panelClass: ['snackbar'] /*This is the class you'll refer to*/
    });
/*In the css file:*/
.snackbar {
  background: lightgreen;
}
Posted by: Guest on September-23-2021

Code answers related to "matsnackbar background color from service"

Browse Popular Code Answers by Language