fix overflow on table header

This commit is contained in:
jeffvli
2025-11-14 00:30:12 -08:00
parent 0c6a993f29
commit ba66b246d2
2 changed files with 5 additions and 2 deletions
@@ -41,7 +41,7 @@
}
.item-table-pinned-rows-grid-container.with-header {
border-bottom: 2px solid var(--theme-colors-border);
border-bottom: 1px solid var(--theme-colors-border);
}
.item-table-pinned-columns-grid-container {
@@ -58,7 +58,7 @@
}
.item-table-pinned-intersection-grid-container.with-header {
border-bottom: 2px solid var(--theme-colors-border);
border-bottom: 1px solid var(--theme-colors-border);
}
.item-table-pinned-columns-container {
@@ -304,6 +304,7 @@ const VirtualizedTableGrid = React.memo(
{ length: pinnedRowCount },
() => 0,
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
overflow: 'hidden',
}}
>
<Grid
@@ -351,6 +352,7 @@ const VirtualizedTableGrid = React.memo(
{ length: pinnedRowCount },
() => 0,
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
overflow: 'hidden',
} as React.CSSProperties
}
>
@@ -415,6 +417,7 @@ const VirtualizedTableGrid = React.memo(
{ length: pinnedRowCount },
() => 0,
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
overflow: 'hidden',
}}
>
<Grid