DashboardScene: Fixes focus panel z-index issue (#78474)

This commit is contained in:
Torkel Ödegaard
2023-11-21 16:23:03 +01:00
committed by GitHub
parent cbb607b36f
commit 0119a9f0f2

View File

@@ -75,7 +75,7 @@ function getStyles(theme: GrafanaTheme2) {
position: 'sticky', position: 'sticky',
top: 0, top: 0,
background: theme.colors.background.canvas, background: theme.colors.background.canvas,
zIndex: 1, zIndex: theme.zIndex.navbarFixed,
padding: theme.spacing(2, 0), padding: theme.spacing(2, 0),
}), }),
}; };