Better calculation for horizontal scroll bar in channel and stream tables.

This commit is contained in:
SergeantPanda 2025-09-12 10:31:35 -05:00
parent 51352ba734
commit a9ca6502ed
2 changed files with 2 additions and 2 deletions

View file

@ -1328,7 +1328,7 @@ const ChannelsTable = ({}) => {
style={{
flex: 1,
overflowY: 'auto',
overflowX: 'hidden',
overflowX: 'auto',
border: 'solid 1px rgb(68,68,68)',
borderRadius: 'var(--mantine-radius-default)',
}}

View file

@ -863,7 +863,7 @@ const StreamsTable = ({}) => {
style={{
flex: 1,
overflowY: 'auto',
overflowX: 'hidden',
overflowX: 'auto',
border: 'solid 1px rgb(68,68,68)',
borderRadius: 'var(--mantine-radius-default)',
}}