fix: Make CV main content area theme-aware

Change .cv-main background from var(--paper-white) to var(--paper-bg)
so it adapts to theme:
- Light theme: white (#ffffff)
- Dark theme: cool dark gray (#1a1a1a)

Now the entire CV paper is dark in dark theme, not just the page background.
This commit is contained in:
juanatsap
2025-11-19 14:54:10 +00:00
parent 4df0360202
commit 4886a36f2c
+1 -1
View File
@@ -33,6 +33,6 @@
/* Main Content Area */
.cv-main {
background: var(--paper-white);
background: var(--paper-bg);
padding: 3rem 2.5rem 8rem 2.5rem; /* Bottom padding for footer and zoom control clearance */
}