input box remove focus in effect code example
Example 1: delected blue border when an input is selected
//SCSS format
input{
&:focus {
outline: none !important;
}
}
textarea{
&:focus {
outline: none !important;
}
}
Example 2: change border highlight color on an input text element
.input:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #719ECE;
}