Greetings when I click on a button-type image from a mobile device this blue box comes out
How would you do it so that it would not come out or at least change the color?
Test in the CSS
a { -webkit-tap-highlight-color: rgba(0,0,0,0); }
Try adding this to the css:
textarea, select, input, button {
outline: none;
}
:focus {
outline-color: transparent;
outline-style: none;
}