remove input highlight 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: input outline focus
input:focus, textarea:focus {
background-color: #FFFF66;
border: 1px solid #F47E58;
}