material-tailwind
material-tailwind copied to clipboard
Dialogs are not scrollable in responsive mode
This happens any time the Dialog is larger than the viewport.
This can be fixed with a theme override:
<ThemeProvider
value={{
dialog: {
styles: {
base: {
backdrop: {
position: 'relative',
},
},
},
},
}}
>
I've opened PR #648 for this.