disable input selection blue border 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: select html stop blue border
select:focus {
box-shadow: none;
outline: none;
}