Merged in fix/non-transparent-table-header (pull request #1243)
fix: sticky table header no longer has transparent background Approved-by: Erik Tiekstra
This commit is contained in:
@@ -1,8 +1,13 @@
|
||||
.header {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
.iconRow {
|
||||
border-bottom: none;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
.verticalTableHeader {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user