From fe29c81cc17244d982d898aaaf13bedd623ef71a Mon Sep 17 00:00:00 2001 From: Timothee Guerin Date: Tue, 16 Dec 2025 08:17:50 -0500 Subject: [PATCH] Fix button focus --- website/src/components/button.astro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/src/components/button.astro b/website/src/components/button.astro index a1697faeed7..e16b703b3e3 100644 --- a/website/src/components/button.astro +++ b/website/src/components/button.astro @@ -41,6 +41,10 @@ const appearanceCls = `appearance-${appearance ?? "primary"}`; color: var(--colorNeutralForeground1); } + .button:focus { + outline: 1px solid var(--colorNeutralForeground1); + } + .appearance-primary { color: var(--colorNeutralForegroundOnBrand); background-color: var(--colorBrandBackground);