From d27ffda10a6f3b0eb282a45b0566ac0f18239c46 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Sun, 13 Feb 2022 12:54:36 +0100 Subject: [PATCH] Remove a margin-bottom coming from Bootstrap --- notes/static/notes/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/notes/static/notes/style.css b/notes/static/notes/style.css index b7ef140..2a52b55 100644 --- a/notes/static/notes/style.css +++ b/notes/static/notes/style.css @@ -37,6 +37,11 @@ article blockquote { padding: 0.5em; } +/* Removes a margin-bottom coming from Bootstrap, but not making sense in this case */ +article blockquote p:last-child { + margin-bottom: 0; +} + footer { color: #ffffff; background-color: #212529; -- 2.34.1