how to open Md-dialog full screen angular4?
You can add a panelClass
to the dialog and then apply whatever css just to that specific dialog.
openTwigTemplate(): void {
let config = new MdDialogConfig();
config = {
position: {
top: '10px',
right: '10px'
},
height: '98%',
width: '100vw',
panelClass: 'full-screen-modal',
};
const dailog = this.dialog.open(TwigDialogComponent, config);
}
Create class:
.full-screen-modal .mat-dialog-container {
max-width: none;
}
This work for me
let dialogRef = this.dialog.open(CustomerGarageAddEditComponent, {
maxWidth: '100vw',
maxHeight: '100vh',
height: '100%',
width: '100%'
});
Source
https://github.com/angular/material2/issues/9823