diff --git a/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx b/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx index 73da63e67ae..6a1b852557e 100644 --- a/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx +++ b/public/app/features/dashboard-scene/panel-edit/PanelEditorRenderer.tsx @@ -81,7 +81,7 @@ function VizAndDataPane({ model }: SceneComponentProps) { return ( <> - {controls && } +
{controls && }
@@ -144,7 +144,6 @@ function getStyles(theme: GrafanaTheme2) { display: 'flex', flexDirection: 'column', minHeight: 0, - gap: '8px', }), optionsPane: css({ flexDirection: 'column', @@ -169,6 +168,12 @@ function getStyles(theme: GrafanaTheme2) { rotate180: css({ rotate: '180deg', }), + controlsWrapper: css({ + display: 'flex', + flexDirection: 'column', + flexGrow: 0, + paddingLeft: theme.spacing(2), + }), openDataPaneButton: css({ width: theme.spacing(8), justifyContent: 'center',