From 91f24559af6e7b7991b62672ee3ee2cf3a5169c2 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 14 Jul 2024 23:21:04 +0600 Subject: [PATCH] web: always show focus ring --- web/src/routes/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/routes/+layout.svelte b/web/src/routes/+layout.svelte index 20eeabbc..01f025fe 100644 --- a/web/src/routes/+layout.svelte +++ b/web/src/routes/+layout.svelte @@ -249,7 +249,7 @@ } :global(:focus-visible) { - box-shadow: 0 0 0 2px var(--blue) inset; + box-shadow: 0 0 0 2px var(--blue) inset !important; outline: none; z-index: 1; }