mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
fix overflow on table header
This commit is contained in:
@@ -41,7 +41,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.item-table-pinned-rows-grid-container.with-header {
|
.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 {
|
.item-table-pinned-columns-grid-container {
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.item-table-pinned-intersection-grid-container.with-header {
|
.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 {
|
.item-table-pinned-columns-container {
|
||||||
|
|||||||
@@ -304,6 +304,7 @@ const VirtualizedTableGrid = React.memo(
|
|||||||
{ length: pinnedRowCount },
|
{ length: pinnedRowCount },
|
||||||
() => 0,
|
() => 0,
|
||||||
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
||||||
|
overflow: 'hidden',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Grid
|
<Grid
|
||||||
@@ -351,6 +352,7 @@ const VirtualizedTableGrid = React.memo(
|
|||||||
{ length: pinnedRowCount },
|
{ length: pinnedRowCount },
|
||||||
() => 0,
|
() => 0,
|
||||||
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
||||||
|
overflow: 'hidden',
|
||||||
} as React.CSSProperties
|
} as React.CSSProperties
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
@@ -415,6 +417,7 @@ const VirtualizedTableGrid = React.memo(
|
|||||||
{ length: pinnedRowCount },
|
{ length: pinnedRowCount },
|
||||||
() => 0,
|
() => 0,
|
||||||
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
||||||
|
overflow: 'hidden',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Grid
|
<Grid
|
||||||
|
|||||||
Reference in New Issue
Block a user