mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
[chore/frontend] Use different background color for block quotes (#2668)
This commit is contained in:
parent
cc09f612ec
commit
ddfc725744
1 changed files with 8 additions and 1 deletions
|
@ -233,13 +233,20 @@ ol {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Outdent block quotes a bit; use
|
Outdent block quotes a bit; use
|
||||||
orange stripe for left border.
|
orange strip for left border.
|
||||||
*/
|
*/
|
||||||
blockquote {
|
blockquote {
|
||||||
padding: 0.5rem 0 0.5rem 0.5rem;
|
padding: 0.5rem 0 0.5rem 0.5rem;
|
||||||
border-left: 0.2rem solid $border-accent;
|
border-left: 0.2rem solid $border-accent;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
|
|
||||||
|
/*
|
||||||
|
Same background color we
|
||||||
|
use for code blocks
|
||||||
|
*/
|
||||||
|
background-color: $gray2;
|
||||||
|
border-radius: $br;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue