From 8d7e7693f260e17550130ac442429eaa820b2d28 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Wed, 1 Feb 2023 13:04:38 +0000 Subject: [PATCH] Command palette: section styling tweaks (#62671) section styling tweaks --- public/app/features/commandPalette/CommandPalette.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/app/features/commandPalette/CommandPalette.tsx b/public/app/features/commandPalette/CommandPalette.tsx index fa6671affa3..9b19cf667dd 100644 --- a/public/app/features/commandPalette/CommandPalette.tsx +++ b/public/app/features/commandPalette/CommandPalette.tsx @@ -166,14 +166,15 @@ const getSearchStyles = (theme: GrafanaTheme2) => { paddingBottom: theme.spacing(1), }), sectionHeader: css({ - padding: theme.spacing(1.5, 2, 1, 2), + padding: theme.spacing(1.5, 2, 2, 2), fontSize: theme.typography.bodySmall.fontSize, fontWeight: theme.typography.fontWeightMedium, - color: theme.colors.text.primary, + color: theme.colors.text.secondary, borderTop: `1px solid ${theme.colors.border.weak}`, marginTop: theme.spacing(1), }), sectionHeaderFirst: css({ + paddingBottom: theme.spacing(1), borderTop: 'none', marginTop: 0, }),