Answers for "style mat-dialog-container"

2

style mat-dialog-container

// Overlay-based components have a panelClass property (or similar) 
// that can be used to target the overlay pane.

this.dialog.open(DialogExampleComponent, { 
	panelClass: 'dialog-container-custom' 
});

// then style it from there

.dialog-container-custom .mat-dialog-container {
	padding: 0;
	background: grey;
}
Posted by: Guest on December-01-2020

Code answers related to "style mat-dialog-container"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language