From 4ff6919731f175e7bc4e632a41a69af2517a4639 Mon Sep 17 00:00:00 2001 From: Dan Cech Date: Thu, 23 Oct 2025 08:53:09 -0400 Subject: [PATCH] Chore: Refine side nav item layout (#112824) adjust padding of sidebar menu items --- public/app/core/components/AppChrome/MegaMenu/MegaMenuItem.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/core/components/AppChrome/MegaMenu/MegaMenuItem.tsx b/public/app/core/components/AppChrome/MegaMenu/MegaMenuItem.tsx index 4c8afa5671f..a3e56e4a3a8 100644 --- a/public/app/core/components/AppChrome/MegaMenu/MegaMenuItem.tsx +++ b/public/app/core/components/AppChrome/MegaMenu/MegaMenuItem.tsx @@ -175,7 +175,7 @@ const getStyles = (theme: GrafanaTheme2) => ({ menuItem: css({ display: 'flex', alignItems: 'center', - gap: theme.spacing(1), + gap: theme.spacing(0.5), height: theme.spacing(4), paddingLeft: theme.spacing(0.5), position: 'relative', @@ -221,6 +221,7 @@ const getStyles = (theme: GrafanaTheme2) => ({ }), labelWrapperWithIcon: css({ paddingLeft: theme.spacing(0.5), + gap: theme.spacing(0.5), }), hasActiveChild: css({ color: theme.colors.text.primary,