Dashboards: Fix links not wrapping (#115393)

* Fix links not wrapping

* also fix margin for links to dashboards
This commit is contained in:
Oscar Kilhed
2025-12-16 10:35:04 +01:00
committed by GitHub
parent 3fe8e70436
commit a5f52fb40d
3 changed files with 2 additions and 2 deletions
@@ -63,7 +63,6 @@ function getStyles(theme: GrafanaTheme2) {
display: 'inline-flex',
alignItems: 'center',
verticalAlign: 'middle',
marginBottom: theme.spacing(1),
}),
};
}
@@ -39,6 +39,8 @@ function getStyles(theme: GrafanaTheme2) {
display: 'inline-flex',
gap: theme.spacing(1),
marginRight: theme.spacing(1),
marginBottom: theme.spacing(1),
flexWrap: 'wrap',
}),
};
}
@@ -181,7 +181,6 @@ function getStyles(theme: GrafanaTheme2) {
display: 'inline-flex',
alignItems: 'center',
verticalAlign: 'middle',
marginBottom: theme.spacing(1),
}),
};
}