diff --git a/public/app/features/dashboard-scene/scene/DashboardControls.tsx b/public/app/features/dashboard-scene/scene/DashboardControls.tsx
index 5bbe9733755..be1ea0c844d 100644
--- a/public/app/features/dashboard-scene/scene/DashboardControls.tsx
+++ b/public/app/features/dashboard-scene/scene/DashboardControls.tsx
@@ -147,10 +147,10 @@ function DashboardControlsRenderer({ model }: SceneComponentProps}
{!hideTimeControls && (
-
+
-
+
)}
@@ -181,7 +181,7 @@ function getStyles(theme: GrafanaTheme2) {
gap: theme.spacing(1),
padding: theme.spacing(2),
flexDirection: 'row',
- flexWrap: 'wrap-reverse',
+ flexWrap: 'nowrap',
position: 'relative',
width: '100%',
marginLeft: 'auto',
@@ -198,12 +198,5 @@ function getStyles(theme: GrafanaTheme2) {
background: 'unset',
position: 'unset',
}),
- timeControlStack: css({
- display: 'flex',
- flexWrap: 'wrap',
- justifyContent: 'flex-end',
- gap: theme.spacing(1),
- marginLeft: 'auto',
- }),
};
}