diff options
author | 2024-02-19 16:51:57 +0100 | |
---|---|---|
committer | 2024-02-19 16:51:57 +0100 | |
commit | ddfc7257444dcf8986a41fbae3e32cd21c322cb8 (patch) | |
tree | 33f83971dfc16afb8f9f53429efe81111f67e9bd | |
parent | [chore/frontend] Don't use italics for block quotes (#2667) (diff) | |
download | gotosocial-ddfc7257444dcf8986a41fbae3e32cd21c322cb8.tar.xz |
[chore/frontend] Use different background color for block quotes (#2668)
-rw-r--r-- | web/source/css/base.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web/source/css/base.css b/web/source/css/base.css index a0de8bc21..54754ff8c 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -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; } /* |