From ea830974b6309c226cb5aad2fa1f34b63a16922e Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 16 Jun 2024 23:06:30 +0600 Subject: [PATCH] web: fix DownloadButton tab focus glow --- web/src/components/save/buttons/DownloadButton.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/components/save/buttons/DownloadButton.svelte b/web/src/components/save/buttons/DownloadButton.svelte index e4379c84..86b56b15 100644 --- a/web/src/components/save/buttons/DownloadButton.svelte +++ b/web/src/components/save/buttons/DownloadButton.svelte @@ -105,6 +105,10 @@ border-bottom-right-radius: var(--border-radius); } + #download-button:focus-visible { + box-shadow: 0 0 0 1.5px var(--secondary) inset; + } + #download-state { font-size: 24px; font-family: "Noto Sans Mono Variable", "Noto Sans Mono", "IBM Plex Mono", monospace;