Design: Fixes minor spacing issue in plugin browse and new connection (#111185)

This commit is contained in:
Torkel Ödegaard
2025-09-17 11:11:28 +02:00
committed by GitHub
parent 48250a1605
commit e8a05f72cb
2 changed files with 6 additions and 8 deletions
@@ -23,11 +23,10 @@ import { NoAccessModal } from './NoAccessModal';
const getStyles = (theme: GrafanaTheme2) => ({
searchContainer: css({
backgroundColor: theme.colors.background.primary,
paddingTop: theme.spacing(2),
paddingBottom: theme.spacing(2),
paddingTop: theme.spacing(0.5),
paddingBottom: theme.spacing(1),
marginBottom: theme.spacing(3),
borderBottom: `1px solid ${theme.colors.border.weak}`,
marginBottom: theme.spacing(2),
}),
contentWrap: css({
height: 'calc(100vh - 350px)',
@@ -168,11 +168,10 @@ const getStyles = (theme: GrafanaTheme2) => ({
overflow: 'hidden',
}),
searchContainer: css({
backgroundColor: theme.colors.background.primary,
paddingTop: theme.spacing(2),
paddingBottom: theme.spacing(2),
paddingTop: theme.spacing(0.5),
paddingBottom: theme.spacing(1),
borderBottom: `1px solid ${theme.colors.border.weak}`,
marginBottom: theme.spacing(2),
marginBottom: theme.spacing(3),
}),
listWrap: css({
height: 'calc(100vh - 350px)',