On the Material UI Text Inputs, there is a black border that appears when hovering over any input field. It honestly looks awful. How can I get rid of it?
I have this CSS content:
& .MuiOutlinedInput-root {
&.Mui-focused fieldset {
border-color: green;
}
&:hover fieldset {
border: none;
}
}
which technically works, but now on hover it just removes to border entirely.
I've tried changing the none to inherit or initial, transparent, etc., but that also fails epically.