From 85c81ae080650fdec3a54aef0329f36df9d2d5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 23 Feb 2023 15:41:43 +0100 Subject: [PATCH] Scenes: Variables minor style fix for spacing & margin (#63643) * Table: Fixes logic for when adhoc filters are shown * Scene: Variables minor style fix * rever unrelated change --- public/app/features/scenes/dashboard/DashboardScene.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/app/features/scenes/dashboard/DashboardScene.tsx b/public/app/features/scenes/dashboard/DashboardScene.tsx index 5990086af42..5ab637c8f10 100644 --- a/public/app/features/scenes/dashboard/DashboardScene.tsx +++ b/public/app/features/scenes/dashboard/DashboardScene.tsx @@ -87,8 +87,10 @@ function getStyles(theme: GrafanaTheme2) { }), controls: css({ display: 'flex', - gap: theme.spacing(1), + paddingBottom: theme.spacing(2), + flexWrap: 'wrap', alignItems: 'center', + gap: theme.spacing(1), }), }; }