Fix: add !important to section-card dark mode rules

Template inline styles have higher specificity than external CSS,
so dark mode overrides need !important to take precedence.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-04 10:14:26 -05:00
parent b7d9ccc859
commit 09c943e795
+4 -4
View File
@@ -2531,13 +2531,13 @@ label.sidenote-number {
}
[data-theme="dark"] .section-card {
background: #1a1a1a;
border-color: #333;
background: #1a1a1a !important;
border-color: #333 !important;
}
[data-theme="dark"] .section-card h2 {
color: #e0e0e0;
border-bottom-color: #333;
color: #e0e0e0 !important;
border-bottom-color: #333 !important;
}
[data-theme="dark"] .person-card-name {