From 1bb9de6f7522d14ef8e5a18116d40c78ec99a07a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 13 Nov 2025 16:36:18 +0100 Subject: [PATCH] Sidepane: Remove padding (#113819) --- .../AppChrome/ExtensionSidebar/ExtensionSidebar.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/app/core/components/AppChrome/ExtensionSidebar/ExtensionSidebar.tsx b/public/app/core/components/AppChrome/ExtensionSidebar/ExtensionSidebar.tsx index 1b632bdfcbf..3ced1f997e2 100644 --- a/public/app/core/components/AppChrome/ExtensionSidebar/ExtensionSidebar.tsx +++ b/public/app/core/components/AppChrome/ExtensionSidebar/ExtensionSidebar.tsx @@ -61,10 +61,13 @@ const getStyles = (theme: GrafanaTheme2) => { display: 'flex', flexDirection: 'column', gap: theme.spacing(1), - padding: theme.spacing(1), width: '100%', height: '100%', overflow: 'auto', + // Temp fix for AI assistant, remove in a 1-2 months + ' > div > div': { + margin: 0, + }, }), content: css({ flex: 1,