Is there a way to make the dropdown select options in a Dialog
(modal) extend past the bottom border instead of getting cut off? I'm currently using MUI v5.
<Dialog open={open}>
<DialogContent>
<Autocomplete
disablePortal
id="combo-box-demo"
options={options}
// getOptionLabel={(option) => option}
sx={{ width: 300 }}
renderInput={(params) => <TextField {...params} label="Numbers" />}
/>
</DialogContent>
</Dialog>
For an example, you can check out this (extreme) Code Sandbox link: Code Sandbox