Skip to content

Commit

Permalink
fix quote color
Browse files Browse the repository at this point in the history
closes: #1298
  • Loading branch information
peterbecich committed Jun 22, 2024
1 parent 1037f20 commit 526b7a9
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions datafiles/static/hackage.css
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,21 @@ pre + pre {
margin-top: 0.5em;
}

@media (prefers-color-scheme: dark) {
blockquote {
border-left: 3px solid #2f2842;
background-color:#252034;
}
}

@media (prefers-color-scheme: light) {
blockquote {
border-left: 3px solid #c7a5d3;
background-color: #eee4f1;
}
}

blockquote {
border-left: 3px solid #c7a5d3;
background-color: #eee4f1;
margin: 0.5em;
padding: 0.0005em 0.3em 0.5em 0.5em;
}
Expand Down

0 comments on commit 526b7a9

Please sign in to comment.