What is the best elegance way to do that?
Can you show us a screenshot of what you are trying to do?
The background that applied around the dialog, which you can see outside the dialog in the attached screenshot.
const theme = createMuiTheme({
overrides: {
MuiBackdrop: {
root: {
backgroundColor: 'rgba(0,0,0,0.2)'
}
}
}
});
Is that what you are looking for?
const theme = createMuiTheme({ overrides: { MuiBackdrop: { root: { backgroundColor: 'rgba(0,0,0,0.2)' } } } });
Is that what you are looking for?
@pedrogscruz where does this go ? In the Javascript file ?
Most helpful comment
Is that what you are looking for?