I'm having trouble adjusting the width of the dialog box to show all of the content without adding a horizontal scroll bar. I noticed that the blur effect is applied to most of the page, so why isn't the form extending with it? Any assistance on this issue would be greatly appreciated!
Below is my CSS code:
infoModal: {
backdropFilter: "blur(3px)",
width: "90%"
},
modalBody: {
width: 1000,
display: 'flex',
flexDirection: 'column',
},
<Dialog onClose={handleClose} open={open} className={classes.infoModal} fullWidth>
<DialogContent className={classes.modalBody}>
</Dialog>
</DialogContent>