From 61f6981f9c596cd07935e27864c93a7df2e23c67 Mon Sep 17 00:00:00 2001 From: mortezaei Date: Tue, 18 Aug 2026 13:45:11 +0330 Subject: [PATCH] style: disable tap highlights and optimize touch interactions for interactive elements --- src/app/globals.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index a377990..7ec4c38 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -149,6 +149,34 @@ html { height: 100%; overflow: hidden; overscroll-behavior: none; + -webkit-tap-highlight-color: transparent; +} + +* { + -webkit-tap-highlight-color: transparent; +} + +button, +input, +select, +textarea, +a, +label, +[role="button"] { + touch-action: manipulation; +} + +button, +[role="button"] { + -webkit-touch-callout: none; + -webkit-user-select: none; + user-select: none; +} + +input, +textarea { + -webkit-user-select: text; + user-select: text; } body {