fix: custom background color for table header (#5989)

This commit is contained in:
Aaryan Khandelwal
2024-11-12 15:26:57 +05:30
committed by GitHub
parent db8c4f92e8
commit 106710f3d0
+12 -4
View File
@@ -27,10 +27,18 @@
}
}
.table-wrapper table th {
font-weight: 500;
text-align: left;
background-color: rgba(var(--color-background-90));
.table-wrapper table {
th {
font-weight: 500;
text-align: left;
}
tr[background="none"],
tr:not([background]) {
th {
background-color: rgba(var(--color-background-90));
}
}
}
.table-wrapper table .selectedCell {