chore: fix the light mode styles

This commit is contained in:
ahmadshaheer 2025-09-21 20:26:24 +04:30
parent 0440f8be7c
commit b80db44c67

View File

@ -123,7 +123,24 @@
[data-slot='table-head']:first-of-type { [data-slot='table-head']:first-of-type {
background: #13141a; background: #13141a;
} }
[data-slot='table-cell']:first-of-type { [data-slot='table-cell']:first-of-type {
background: rgba(171, 189, 255, 0.04); background: rgba(171, 189, 255, 0.04);
} }
} }
.lightMode {
.span-table {
[data-slot='table-row'] {
&:hover {
background: var(--bg-vanilla-400);
}
}
[data-slot='table-head'] {
background: var(--bg-vanilla-100);
}
[data-slot='table-head']:first-of-type {
background: var(--bg-vanilla-200);
}
}
}