From ee54f20c83f342ad036a9ce5c0842bcbea89989c Mon Sep 17 00:00:00 2001 From: kbyyd24 Date: Sun, 17 Jan 2021 04:54:15 +0800 Subject: [PATCH] fix asciidoc post render issue. When render asciidoc post, there are big blank area after image and code block. This happens becase they are wrapped in a div with class 'content', which has 'min-height: 85vh' and 'margin-bottom: 70px' configs. This commit is removing the two configs. --- assets/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index 6c6499f..398e932 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -6024,11 +6024,11 @@ body.no-sidebar .sidebar { margin-left: 10px; } -.main .content { +.main { min-height: 85vh; } -.main.has-sticky .content { +.main.has-sticky { margin-bottom: 70px; }