Overwriting Styles in Material Ui Css
This was a tricky problem that I took a while to wrap my head around and implement. Basically, I needed to change the font and background-color of a material UI button, when I hover over it. The standard documentation was mainly to use className to change - which did nothing to the selected property. Because the specificity is lower. Using external CSS also fails due to lower specificity. After fiddling around, I realized that this is the only way: ...