Remove Android Chrome Blue Link Highlight
.mm li {
-webkit-tap-highlight-color: transparent;
}Last updated
On android devices specifically while using chrome, there is a blue tap highlight that is added to links inside the mobile menu. This can cause the visuallized tap target to appear like its not on the actual link you are tapping.
In order to remove you can add this small snippet of CSS
.mm li {
-webkit-tap-highlight-color: transparent;
}Last updated