For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove Android Chrome Blue Link Highlight

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