Add -webkit-tap-highlight-color for smoother touch experience (#4630) * Add interactable outline color CSS variables Introduces --interactable-outline-color and --interactable-outline-color-faint variables to the body style, both set to transparent for future use in styling interactive elements. * Update global styles and remove unused CSS variables Added -webkit-tap-highlight-color to the universal selector for improved touch experience.

a418ad0f14538be336384f3b3f5b311939fb11b1

Rivelle <rivelle.days@gmail.com>

Signed
1 files changed, +1 -0Showing whitespace changes
public/style.css+1 -0
@@ -133,6 +133,7 @@
133133* {
134134 box-sizing: border-box;
135135 -webkit-font-smoothing: antialiased;
136+ -webkit-tap-highlight-color: transparent;
136137 -moz-osx-font-smoothing: grayscale;
137138 text-shadow: 0px 0px calc(var(--shadowWidth) * 1px) var(--SmartThemeShadowColor);
138139}