From 1cd0beb231d98bc14ff660d98bc78b1ba2df43b3 Mon Sep 17 00:00:00 2001 From: Roy Date: Tue, 23 Apr 2024 11:48:54 +0800 Subject: [PATCH] chore: No outline when element is in `:focus-visible` state --- app/styles/globals.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/styles/globals.scss b/app/styles/globals.scss index aa22b7d4fd6..20792cda526 100644 --- a/app/styles/globals.scss +++ b/app/styles/globals.scss @@ -86,6 +86,7 @@ @include dark; } } + html { height: var(--full-height); @@ -110,6 +111,10 @@ body { @media only screen and (max-width: 600px) { background-color: var(--second); } + + *:focus-visible { + outline: none; + } } ::-webkit-scrollbar {