I'm trying to get rid of max-width that present in the theme.
This is what I see in Chrome (and if I uncheck it, it does what I need):
@media (min-width: 1280px)
.MuiContainer-maxWidthLg {
max-width: 1280px;
}
How can I do this? I tried something like this:
const useStyles = makeStyles(theme => ({
root: {
'& .MuiContainer-maxWidthLg' : {
maxWidth: //No matter what I put here, it does not work
},
but it does not seem to have any effect... How can I override this?
Thanks,
Alex