mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Refined spacings for paragraphs and blockquotes
- paragraphs had a bit too much bottom margin - blockquotes missed bottom margin
This commit is contained in:
parent
6274e90e27
commit
e95e93618f
1 changed files with 4 additions and 2 deletions
|
@ -32,14 +32,16 @@ body {
|
|||
.gh-comment-content blockquote {
|
||||
border-left: 3px solid rgba(13,13,13,.1);
|
||||
padding-left: 1rem;
|
||||
margin: 0 0 1.2rem;
|
||||
}
|
||||
|
||||
/* Paragraphs */
|
||||
.gh-comment-content p {
|
||||
margin: 0 0 2rem;
|
||||
margin: 0 0 1.2rem;
|
||||
}
|
||||
|
||||
.gh-comment-content p:last-child {
|
||||
.gh-comment-content p:last-child,
|
||||
.gh-comment-content blockquote:last-child {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue