Skip to content

Commit

Permalink
🎨 Fix styling of docs headings in dark mode (#2026)
Browse files Browse the repository at this point in the history
  • Loading branch information
mermop committed Jun 30, 2024
1 parent ad02b87 commit 7035daf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/_static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@ pre, code {

.sd-card .sd-card-header {
border: none;
color: #150458 !important;
color: #150458;
font-size: var(--pst-font-size-h5);
font-weight: bold;
padding: 2.5rem 0rem 0.5rem 0rem;
}

html[data-theme=dark] {
.sd-card .sd-card-header {
color: #FFF;
}
}

0 comments on commit 7035daf

Please sign in to comment.