From 3b205ebb735a21bb61dc821c1aad618a24bdad9a Mon Sep 17 00:00:00 2001 From: Jonatan Poveda Date: Tue, 15 Sep 2020 12:33:09 +0200 Subject: [PATCH] Fix Whitey's H2 border misplaced on PDF export. Whitey's H2 underline is painted some lines after its text, overlaying another text if it coincides. - Replace border-bottom by bottom-top on H2 properties definition. --- themes/whitey.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/whitey.css b/themes/whitey.css index 2c82845..b652270 100644 --- a/themes/whitey.css +++ b/themes/whitey.css @@ -57,7 +57,7 @@ h3{ } h2:after{ - border-bottom: 1px solid #2f2f2f; + border-top: 1px solid #2f2f2f; content: ''; width: 100px; display: block; @@ -264,4 +264,4 @@ table tbody+tbody { .typora-node .file-list-item-time, .typora-node .file-list-item-summary { font-family: arial, sans-serif; -} \ No newline at end of file +}