fix: sticky table header no longer has transparent background

This commit is contained in:
Christian Andolf
2025-02-03 14:00:57 +01:00
parent dd4a2d8120
commit a5776d7256
2 changed files with 6 additions and 1 deletions

View File

@@ -1,8 +1,13 @@
.header {
background-color: inherit;
}
.iconRow {
border-bottom: none;
position: sticky;
top: 0;
z-index: 1;
background-color: inherit;
}
.verticalTableHeader {

View File

@@ -16,7 +16,7 @@ export default function DesktopHeader({
Select,
}: LargeTableProps) {
return (
<thead>
<thead className={styles.header}>
<tr className={styles.iconRow}>
<th className={styles.verticalTableHeader} />
{levels.map((level, idx) => {