Auto-generate: Scrollable history container (#77895)

This commit is contained in:
Adela Almasan 2023-11-20 12:01:25 -06:00 committed by GitHub
parent 5ca5a95e63
commit e4fb112d6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -186,6 +186,7 @@ const getStyles = (theme: GrafanaTheme2) => ({
display: 'flex',
flexDirection: 'column',
width: 520,
height: 250,
// This is the space the footer height
paddingBottom: 35,
}),

View File

@ -64,5 +64,7 @@ const getStyles = (theme: GrafanaTheme2) => ({
flexGrow: 3,
whiteSpace: 'pre-wrap',
marginTop: 20,
height: 110,
overflowY: 'scroll',
}),
});