From b3d59f8a0f7aee606dde0eb7fea9d9d613f34087 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 30 May 2018 23:38:02 -0400 Subject: [PATCH] Disable the padding of the p tag inside the blockquote tag (#711) * Disable the padding of the p tag inside the blockquote tag * Make CSS rule more specific. --- lib/static/css/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/static/css/main.css b/lib/static/css/main.css index 05617a94daf4..cca1b8e33ba2 100644 --- a/lib/static/css/main.css +++ b/lib/static/css/main.css @@ -123,6 +123,10 @@ blockquote { border-left: 5px solid rgba(191, 87, 73, 0.2); } +.wrapper blockquote > p:first-child { + padding-top: 0; +} + h1, h2, h3, h4 { font-weight: 300; color: $primaryColor;