fix: Keep sidebar background consistent across themes

Change sidebar background from var(--sidebar-bg) to fixed #d1d4d2
so it remains the same light gray color in both light and dark themes.

The sidebar should provide a consistent visual anchor regardless
of the main content theme.
This commit is contained in:
juanatsap
2025-11-19 14:57:38 +00:00
parent 4886a36f2c
commit 35a802cbd5
3 changed files with 136 additions and 6 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
/* Sidebar - Left/Right columns */
.cv-sidebar {
background: var(--sidebar-bg);
background: #d1d4d2; /* Fixed color - same for both themes */
padding: 4rem 1.5rem;
font-size: 0.9rem;
}