Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
 
PREVIOUS NEXT
Tagged: #matsnackbar #background #color
ADD COMMENT
Topic
Name
6+7 =