From 60058cb3da17aa4a5501169a17cc2b28fc9aa436 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Wed, 26 Jul 2023 16:46:16 +0100 Subject: [PATCH] Button: Fix global button styles! (#72391) uncomment button focus styles! --- packages/grafana-ui/src/themes/GlobalStyles/elements.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/themes/GlobalStyles/elements.ts b/packages/grafana-ui/src/themes/GlobalStyles/elements.ts index 322dac60be5..bb8278efe4e 100644 --- a/packages/grafana-ui/src/themes/GlobalStyles/elements.ts +++ b/packages/grafana-ui/src/themes/GlobalStyles/elements.ts @@ -43,7 +43,7 @@ export function getElementStyles(theme: GrafanaTheme2) { button: { letterSpacing: theme.typography.body.letterSpacing, - // '&:focus-visible': getFocusStyles(theme), + '&:focus-visible': getFocusStyles(theme), '&:focus': { outline: 'none', },