I'm having issues removing the outline from the Textarea component, but it does not work.
This is what it looks like:
I tried:
<Textarea className={style.textarea}
sx={{outline:'none', border:'none',
'&:focus':{outline:'none', border:'none'}}}/>
// From CSS file
.textarea:focus {
outline:none,
border:none
}