TimeRangeList: absolute time range list not scrollable (#82887)

This commit is contained in:
Laura Fernández
2024-02-21 12:28:57 +01:00
committed by GitHub
parent d091e4c264
commit 6b31b1fc03
@@ -280,6 +280,8 @@ const getStyles = (
borderRadius: theme.shape.radius.default,
border: `1px solid ${theme.colors.border.weak}`,
[`${isReversed ? 'left' : 'right'}`]: 0,
display: 'flex',
flexDirection: 'column',
}),
body: css({
display: 'flex',
@@ -292,7 +294,7 @@ const getStyles = (
flexDirection: 'column',
borderRight: `${isReversed ? 'none' : `1px solid ${theme.colors.border.weak}`}`,
width: `${!hideQuickRanges ? '60%' : '100%'}`,
overflow: 'hidden',
overflow: 'auto',
order: isReversed ? 1 : 0,
}),
rightSide: css({