From 6ada59ae7b5ad87ac371c30c1dfa244b628579b5 Mon Sep 17 00:00:00 2001 From: the3ash <24548223+the3ash@users.noreply.github.com> Date: Thu, 15 Jan 2026 00:19:29 +0800 Subject: [PATCH] style: tweak focus outline --- src/styles/global.css | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index d77872c..5de2ef9 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -144,18 +144,13 @@ body { background-color: var(--selection); } -:focus { - outline: 2px solid var(--text-tertiary); - outline-offset: 2px; -} - :focus:not(:focus-visible) { outline: none; } :focus-visible { - outline: 2px solid var(--text-tertiary); - outline-offset: 2px; + outline: 1.5px dashed var(--text-tertiary); + border-radius: 0.25rem; } body[data-width] { -- 2.51.2