From c88e5ed28b684869d22429dc9a357f8f4449ee0a Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Mon, 23 May 2022 18:24:35 +0200 Subject: [PATCH] Fix heading margins in content info --- static/src/scss/_main.scss | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/static/src/scss/_main.scss b/static/src/scss/_main.scss index dfe1e5f..a62829f 100644 --- a/static/src/scss/_main.scss +++ b/static/src/scss/_main.scss @@ -104,8 +104,15 @@ img { } } -#changelog, #sources { - font-family: $font-family-mono; - font-size: $font-size-base * 0.9; - font-weight: 400; +.content-info { + h1, h2, h3, h4, h5, h6 { + margin-top: $headings-margin-bottom; + margin-bottom: 0.3rem; + } + + #changelog, #sources { + font-family: $font-family-mono; + font-size: $font-size-base * 0.9; + font-weight: 400; + } }