fix background color of collapsed sidebar

This commit is contained in:
jeffvli 2025-06-28 13:34:16 -07:00
parent 81ca6937bc
commit f4db8fdb84
2 changed files with 1 additions and 1 deletions

View file

@ -4,7 +4,6 @@
height: 100%; height: 100%;
max-height: calc(100vh - 119px); max-height: calc(100vh - 119px);
user-select: none; user-select: none;
background: var(--theme-colors-background-alternate);
} }
.sidebar-container.web, .sidebar-container.web,

View file

@ -1,5 +1,6 @@
.container { .container {
position: relative; position: relative;
grid-area: sidebar; grid-area: sidebar;
background: var(--theme-colors-background-alternate);
border-right: 1px solid alpha(var(--theme-colors-border), 0.3); border-right: 1px solid alpha(var(--theme-colors-border), 0.3);
} }