I can't find a way to customize the css of a backdrop/overlay of a dialog.
| Tech | Version | |--------------|---------| | Material-UI | v1.0.0-rc.0 |
<Dialog BackdropProps={{ className: classes.backdrop }}
https://codesandbox.io/s/03mj318xm0
@nicgirault The trick is to follow the properties inheritance / cascading between the components. Dialog > Modal
But classes api allows to handle it in less noisy way
const UDialog = withStyles({ backgrop: { background: '#000' } })(Dialog)
Most helpful comment
https://codesandbox.io/s/03mj318xm0