Hii Matt Sawka,
Follow below steps for make scrollable modal, if content overflows,
1. Replace attached file SimpleModal.tsx/.js at our project directory '../src/view/forms/plugins/Modal/'.
OR
1. Open file SimpleModal.tsx/.js
2. If you want fix modal position then set below sx prop to <MainCard ...> component.
sx={{
position: 'absolute',
width: { xs: 280, lg: 450 },
top: '50% !important',
left: '50% !important',
transform: 'translate(-50%, -50%) !important'
}}
3. For scroll modal if overflow content add below sx prop to <CardContent ..> component.
<CardContent sx={{ overflowY: 'auto', minHeight: 'auto', maxHeight: `calc(100vh - 200px)` }}>
If you still have any query, contact us
yes, perfect. thank you!