-
Style width and height don't seem to work on the dialog, any ideas how to do this? |
Beta Was this translation helpful? Give feedback.
Answered by
asyncLiz
Jan 9, 2024
Replies: 2 comments
-
You can use md-dialog.fullscreen {
margin: 0;
width: 100vw;
height: 100vh;
max-width: unset;
max-height: unset;
--md-dialog-container-shape: 0;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
treeder
-
Thanks, that works. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
margin
to customize where the dialog is positioned. You may also need to unsetmax-width
andmax-height
if you want the dialog to be able to expand larger than those default limits.