This is how my problem looks like (see the ring) :
Using the Chrome's inspector found that it is related to --tw-ring-shadow
.
So I tried adding classes like ring-0
and ring-offset-0
(as you can see below) but it didn't work!!
import { TextField } from "@mui/material";
function ContactForm(): JSX.Element {
return (
<div className="form-container pt-12 flex flex-col items-center">
<div className="input-row">
<TextField
className="ring-offset-0 ring-0"
label="First Name"
variant="outlined"
/>
</div>
</div>
);
}
export default ContactForm;
Do you have any idea for how can I get rid of this annoying border that overlaps the input field??
I'd appreciate your help!