mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
fix overflow on table header
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user