Remove :focus, :active, tap states
/**
* Removing :focus states is bad for accessibility, but
* can be subsidised by replacing them with the same styling as the hover state
*/
a {
&:focus{
outline: 0;
//Remove blue tap state from Chrome Android
-webkit-tap-highlight-color: transparent;
}
&:hover,
&:focus {
//Match hover and focus states
}
}