From b6c5be0593ed93348f10ca4c59764f96fe74ce5c Mon Sep 17 00:00:00 2001 From: Deimos Date: Fri, 3 Aug 2018 17:06:01 -0600 Subject: [PATCH] Fix excessive margin on
    at end of block The bottom margin on
      was causing some weird spacing when it's the last element inside a block. This is most noticeable on a blockquote where the background color extends further down than it should. --- tildes/scss/_base.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tildes/scss/_base.scss b/tildes/scss/_base.scss index c1087e2..b74483c 100644 --- a/tildes/scss/_base.scss +++ b/tildes/scss/_base.scss @@ -161,6 +161,10 @@ ol { margin-top: 0.2rem; max-width: $paragraph-max-width - 2rem; } + + &:last-child { + margin-bottom: 0.2rem; + } } p {