From d305e80006b672b648358ca4f19791f725e6372a Mon Sep 17 00:00:00 2001 From: Cody Shearer Date: Mon, 30 Oct 2023 09:03:06 -0400 Subject: [PATCH] fix: remove `-webkit-tap-highlight-color` Some browsers use the `-webkit-tap-highlight-color` to set the color of the highlight that appears over a link while it's being tapped. This isn't desired, as we have, or plan to have interactive elements respond visually to interactions. --- assets/css/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/main.css b/assets/css/main.css index de93631..f83633d 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -6,6 +6,7 @@ html { @apply bg-neutral-800 text-neutral-200; + -webkit-tap-highlight-color: transparent; font-family: Roboto, sans-serif; }