Could you please tell me How to make border red in react ui material ? Here is my code https://codesandbox.io/s/942m24jl0y
Currently when I focus my input field it show border in blue color
I already added these lines
underlineInput: {
'&:before': {
borderBottom: '1px solid #777777'
},
'&:after': {
borderBottom: `2px solid #777777`
},
'&:hover:not($disabled):not($focused):not($error):before': {
borderBottom: `2px solid #777777`
}
},
I want to change border color to red