I am trying to create 100% width Dialog. But As the original settings, it is restricted to 80vw.
.mat-dialog-container{
max-width:80vw;
}
I have tried following ways to overwrite this value. But they weren't successful.
.mat-dialog-container {
max-width: none;
width: 100vw;
height: 100vh;
}
And
.mat-dialog-container {
max-width: none !important;
}
Someone please advise me how to overwrite 80vw to 100vw. Thank you.