From c693d12e2ded9c5a562bffe4a6aa18fd2d10f9d9 Mon Sep 17 00:00:00 2001 From: Michael Arestad Date: Thu, 4 Aug 2022 13:54:58 -0600 Subject: [PATCH] Fix MenuButton size --- code/lib/ui/src/components/sidebar/Menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/lib/ui/src/components/sidebar/Menu.tsx b/code/lib/ui/src/components/sidebar/Menu.tsx index 1096620ef8e..e15b4fc9fb2 100644 --- a/code/lib/ui/src/components/sidebar/Menu.tsx +++ b/code/lib/ui/src/components/sidebar/Menu.tsx @@ -44,7 +44,7 @@ export const MenuButton: FC & { highlighted: boole >(({ highlighted, theme }) => ({ position: 'relative', overflow: 'visible', - padding: 7, + padding: 8, transition: 'none', // prevents button border from flashing when focused/blurred '&:focus': { background: theme.barBg,