From 55a5b8615b570d0a8e690bae29aa8d2fbe0d2bb4 Mon Sep 17 00:00:00 2001 From: Mike Sawka Date: Wed, 6 Mar 2024 11:52:26 -0800 Subject: [PATCH] nerf markdown header font sizes -- match github (#388) --- src/app/common/elements/markdown.less | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app/common/elements/markdown.less b/src/app/common/elements/markdown.less index d430d208..e24d84b1 100644 --- a/src/app/common/elements/markdown.less +++ b/src/app/common/elements/markdown.less @@ -70,21 +70,32 @@ outline: 2px solid var(--markdown-outline-color); } + .title { + font-weight: semibold; + padding-top: 6px; + } + .title.is-1 { border-bottom: 1px solid #777; padding-bottom: 6px; + font-size: 2em; } .title.is-2 { border-bottom: 1px solid #777; padding-bottom: 6px; + font-size: 1.5em; } .title.is-3 { + font-size: 1.25em; } .title.is-4 { + font-size: 1em; } .title.is-5 { + font-size: 0.875em; } .title.is-6 { + font-size: 0.85em; } }