feat: light mode fixes for navtab + files tab (#5134)

This commit is contained in:
Calum H.
2026-01-16 18:23:43 +00:00
committed by GitHub
parent c9bfc4e9b6
commit 82e4eb7b40
2 changed files with 17 additions and 4 deletions

View File

@@ -341,6 +341,12 @@ function handleDrop(event: DragEvent) {
<style scoped>
.file-row-alt {
background: color-mix(in srgb, var(--surface-2), black 3%);
}
:global(.dark-mode) .file-row-alt,
:global(.dark) .file-row-alt,
:global(.oled-mode) .file-row-alt {
background: color-mix(in srgb, var(--surface-2), black 10%);
}
</style>