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 {
|
.iconRow {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
background-color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.verticalTableHeader {
|
.verticalTableHeader {
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export default function DesktopHeader({
|
|||||||
Select,
|
Select,
|
||||||
}: LargeTableProps) {
|
}: LargeTableProps) {
|
||||||
return (
|
return (
|
||||||
<thead>
|
<thead className={styles.header}>
|
||||||
<tr className={styles.iconRow}>
|
<tr className={styles.iconRow}>
|
||||||
<th className={styles.verticalTableHeader} />
|
<th className={styles.verticalTableHeader} />
|
||||||
{levels.map((level, idx) => {
|
{levels.map((level, idx) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user