From 26fbb553f31e37dc18b2cc42eab76f71bf7059f1 Mon Sep 17 00:00:00 2001 From: Oscar Kilhed Date: Thu, 14 Aug 2025 16:33:11 +0200 Subject: [PATCH] Dynamic dashboards: Fix height of disabled margin option pane categories (#109664) Fix height of disabled margin option pane categories --- .../dashboard/components/PanelEditor/OptionsPaneCategory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx index 6a682292586..7c65fa0c48a 100644 --- a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx +++ b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx @@ -214,7 +214,7 @@ const getStyles = (theme: GrafanaTheme2) => ({ }), disabledIcon: css({ color: theme.colors.text.disabled, - marginRight: theme.spacing(1), + margin: theme.spacing(1, 1, 1, 0), }), bodyNested: css({ position: 'relative',