Blue highlight on onclick on buttons in chrome mobile?
It's -webkit-tap-highlight-color
default behaviour.
*:focus {
-webkit-tap-highlight-color: transparent;
outline: none;
-ms-touch-action: manipulation;
touch-action: manipulation;
}