@vatsalsinghkvSubmitted over 3 years ago
So I'm facing this problem, whenever I tap on buttons in my mobile phone, I get this light-blue coloured transparent layer on that button.
I have tried using ::selection & outline:none on the buttons, but it didn't work.
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
}
.keys::selection {
background: transparent;
}
If anyone can help me resolve this issue it would be great help