Logs context: fix position on small viewports (#112342)

This commit is contained in:
Matias Chomicki
2025-10-13 16:02:09 +00:00
committed by GitHub
parent 5e0af5f57c
commit 6c726cf0ea
2 changed files with 2 additions and 8 deletions
@@ -40,9 +40,6 @@ const getStyles = (theme: GrafanaTheme2) => {
[theme.breakpoints.down('md')]: {
width: '100%',
},
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
}),
sticky: css({
position: 'sticky',
@@ -431,14 +431,11 @@ const getStyles = (theme: GrafanaTheme2) => {
return {
modal: css({
width: '85vw',
height: '80%',
height: '80vh',
[theme.breakpoints.down('md')]: {
width: '100%',
minHeight: '100%',
height: '100vh',
},
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
}),
loadingIndicator: css({
height: theme.spacing(3),