I have an input field as shown below. And in the class name I have it as form-control
<input ref={englishTypeRef} className="form-control p-3 settings-input" placeholder={dbData ? dbData.englishType : null}/>
Whenever I focus into this field, I get a blue outline around the borders.
So In my settings-input I use outline:none
.settings-input{
...
}
.settings-input:focus {
outline:none;
}
But the blue border on focus remains the same. How can I remove this?
