angular disable button focus border code example
Example 1: remove button highlight on click
.btn:focus {
outline: none;
box-shadow: none;
}
Example 2: diable focus button css
*:focus {
outline: 0 !important;
}
.btn:focus {
outline: none;
box-shadow: none;
}
*:focus {
outline: 0 !important;
}