waynedunkley
3/2/2016 - 5:51 AM

Remove :focus, :active, tap states

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
  }
}