From d9fc94f9a9e5188ff9ce882c52ed03645075eef5 Mon Sep 17 00:00:00 2001 From: Bruno Quaresma Date: Mon, 15 May 2023 14:43:16 -0300 Subject: [PATCH] fix(site): Fix focus state on buttons (#7526) --- site/src/theme/theme.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/src/theme/theme.ts b/site/src/theme/theme.ts index 69cfc42cc4..b529a3651a 100644 --- a/site/src/theme/theme.ts +++ b/site/src/theme/theme.ts @@ -126,6 +126,9 @@ dark = createTheme(dark, { height: BUTTON_MD_HEIGHT, padding: theme.spacing(1, 2), whiteSpace: "nowrap", + ":focus-visible": { + outline: `2px solid ${theme.palette.primary.main}`, + }, }), sizeSmall: { borderRadius: 6,