diff --git a/public/app/core/components/Page/Page.tsx b/public/app/core/components/Page/Page.tsx index 3af15a6629c..409326dc357 100644 --- a/public/app/core/components/Page/Page.tsx +++ b/public/app/core/components/Page/Page.tsx @@ -129,6 +129,9 @@ const getStyles = (theme: GrafanaTheme2) => { display: 'flex', flexDirection: 'column', padding: theme.spacing(2), + paddingLeft: 0, + paddingTop: 0, + paddingBottom: 0, flexBasis: '100%', flexGrow: 1, }), diff --git a/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx b/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx index 109b3db72de..cb14e5817b7 100644 --- a/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx +++ b/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx @@ -69,6 +69,9 @@ function getStyles(theme: GrafanaTheme2) { display: 'flex', flexDirection: 'column', padding: theme.spacing(0, 2), + paddingLeft: 0, + paddingTop: 0, + paddingBottom: 0, flexBasis: '100%', flexGrow: 1, minHeight: 0, diff --git a/public/app/features/dashboard-scene/scene/DashboardSceneRenderer.tsx b/public/app/features/dashboard-scene/scene/DashboardSceneRenderer.tsx index 08f39caa97c..a1d04023242 100644 --- a/public/app/features/dashboard-scene/scene/DashboardSceneRenderer.tsx +++ b/public/app/features/dashboard-scene/scene/DashboardSceneRenderer.tsx @@ -56,6 +56,9 @@ function getStyles(theme: GrafanaTheme2) { display: 'flex', flexDirection: 'column', padding: theme.spacing(0, 2), + paddingLeft: 0, + paddingTop: 0, + paddingBottom: 0, flexBasis: '100%', flexGrow: 1, }),