I am trying to pass some property value using config. But dialog not open into full screen.
openTwigTemplate(): void {
let config = new MdDialogConfig();
config = {
position: {
top: '10px',
right: '10px'
},
height: '98%',
width: '100vw',
};
const dailog = this.dialog.open(TwigDialogComponent, config);
}
How can I open dialog full screen based on resolution?
dialogConfig = { position: { top: '10px', right: '10px' }, height: '98%', width: '100vw', maxWidth: '95vw', panelClass: 'full-screen-modal' };
– Mammon