Hi everyone,
I’m trying to add a glow effect to a material-ui IconButton. I’m controlling style priority with StylesProvider.
This is my component:
<StylesProvider injectFirst>
<IconButton className="info-button"><InfoIcon /></IconButton>
</StylesProvider>
This is the style I’m applying:
.info-button:hover {
box-shadow: 0 0px 10px var(--cfOrange);
}
However, as you can see in the image, I can’t get rid of this ring around the icon. Any ideas?
