From 484925cd6504efcc0962b69d120a4fa775ba83e2 Mon Sep 17 00:00:00 2001 From: Sashanoraa Date: Mon, 7 Feb 2022 04:51:29 -0500 Subject: [PATCH] Fix touch delay on mobile This fixes the touch delay on mobile in my testing. Source: https://developers.google.com/web/updates/2013/12/300ms-tap-delay-gone-away This say the CSS fix doesn't work on Firefox but it does in my testing. Signed-off-by: Sashanoraa --- site/styles.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/site/styles.scss b/site/styles.scss index d81eebf..a6f5c0b 100644 --- a/site/styles.scss +++ b/site/styles.scss @@ -5,6 +5,7 @@ html { --color-ck: #21b0c6; scrollbar-color: var(--color-lo) var(--color-bg); + touch-action: manipulation; } body {