[chore/frontend] Use different background color for block quotes (#2668)

This commit is contained in:
tobi 2024-02-19 16:51:57 +01:00 committed by GitHub
parent cc09f612ec
commit ddfc725744
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 1 deletions

View File

@ -233,13 +233,20 @@ ol {
/*
Outdent block quotes a bit; use
orange stripe for left border.
orange strip for left border.
*/
blockquote {
padding: 0.5rem 0 0.5rem 0.5rem;
border-left: 0.2rem solid $border-accent;
margin: 0;
font-style: normal;
/*
Same background color we
use for code blocks
*/
background-color: $gray2;
border-radius: $br;
}
/*