mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user