“Mat Dialog” Ответ

.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;
}
Ukulily

Mat Dialog

@Component({/* ... */})
export class YourDialog {
  constructor(public dialogRef: MatDialogRef<YourDialog>) { }

  closeDialog() {
    this.dialogRef.close('Pizza!');
  }
}
MitchAloha

Ответы похожие на “Mat Dialog”

Вопросы похожие на “Mat Dialog”

Больше похожих ответов на “Mat Dialog” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования