0
Fork 0
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:
Peter Zimon 2022-08-15 12:41:10 +02:00
parent 6274e90e27
commit e95e93618f

View file

@ -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;
}