From 514213be4e48c987f46394cfb8374bd97f7fd0af Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 23 Jan 2019 20:50:17 -0700 Subject: [PATCH] Make notes that start with a heading not have extra empty space on top --- www/css/notecards.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/css/notecards.css b/www/css/notecards.css index 4025908..d54de80 100644 --- a/www/css/notecards.css +++ b/www/css/notecards.css @@ -73,6 +73,10 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. max-width: 100%; } +.notecard .card-content h1:nth-child(2), .notecard .card-content h2:nth-child(2), .notecard .card-content h3:nth-child(2), .notecard .card-content h4:nth-child(2), .notecard .card-content h5:nth-child(2), .notecard .card-content h6:nth-child(2) { + margin-top: 0px; +} + .notecard { min-height: 4em; }