From 61ce7c2f4bc857640cd04556130c84cf5d88830f Mon Sep 17 00:00:00 2001 From: Andrew Banchich Date: Tue, 3 Mar 2020 20:54:40 -0500 Subject: [PATCH] fix padding in blockquotes --- _sass/base/_typography.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_sass/base/_typography.scss b/_sass/base/_typography.scss index f1bdf33..763a0c9 100644 --- a/_sass/base/_typography.scss +++ b/_sass/base/_typography.scss @@ -59,6 +59,10 @@ margin: 0 0 _size(element-margin) 0; } + blockquote > p { + margin: 0; + } + h1, h2, h3, h4, h5, h6 { color: _palette(fg-bold); font-weight: _font(weight-bold); @@ -170,4 +174,4 @@ .align-right { text-align: right; - } \ No newline at end of file + }