From 7b06843fe125fe0a36a4290483ca61d141eda0f0 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Tue, 11 Aug 2020 10:04:55 +1000 Subject: [PATCH] patch font sizes --- mods/core/css/dark.css | 6 ++++-- mods/core/css/light.css | 6 ++++-- mods/core/css/variables.css | 2 ++ mods/neutral/styles.css | 1 + 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/mods/core/css/dark.css b/mods/core/css/dark.css index 583c83a..c92e989 100644 --- a/mods/core/css/dark.css +++ b/mods/core/css/dark.css @@ -198,12 +198,14 @@ .notion-dark-theme .notion-frame .notion-scroller.vertical.horizontal - .notion-page-content, + .notion-page-content { + font-size: var(--theme_dark--font-body_size) !important; +} .notion-dark-theme .notion-frame .notion-scroller.vertical.horizontal [style*='font-size: 14px'] { - font-size: var(--theme_dark--font-body_size) !important; + font-size: var(--theme_dark--font-label_size) !important; } .notion-dark-theme .notion-frame diff --git a/mods/core/css/light.css b/mods/core/css/light.css index bfc6ab2..b6fd0a6 100644 --- a/mods/core/css/light.css +++ b/mods/core/css/light.css @@ -200,12 +200,14 @@ .notion-light-theme .notion-frame .notion-scroller.vertical.horizontal - .notion-page-content, + .notion-page-content { + font-size: var(--theme_light--font-body_size) !important; +} .notion-light-theme .notion-frame .notion-scroller.vertical.horizontal [style*='font-size: 14px'] { - font-size: var(--theme_light--font-body_size) !important; + font-size: var(--theme_light--font-label_size) !important; } .notion-light-theme .notion-frame diff --git a/mods/core/css/variables.css b/mods/core/css/variables.css index 38a048d..ecec26d 100644 --- a/mods/core/css/variables.css +++ b/mods/core/css/variables.css @@ -33,6 +33,7 @@ --theme_dark--font-heading1_size: 30px; --theme_dark--font-heading2_size: 24px; --theme_dark--font-heading3_size: 20px; + --theme_dark--font-label_size: 14px; --theme_dark--font-body_size: 16px; --theme_dark--font-code_size: 12.75px; @@ -139,6 +140,7 @@ --theme_light--font-heading1_size: 30px; --theme_light--font-heading2_size: 24px; --theme_light--font-heading3_size: 20px; + --theme_light--font-label_size: 14px; --theme_light--font-body_size: 16px; --theme_light--font-code_size: 12.75px; diff --git a/mods/neutral/styles.css b/mods/neutral/styles.css index 625d70d..6cdd068 100644 --- a/mods/neutral/styles.css +++ b/mods/neutral/styles.css @@ -36,6 +36,7 @@ --theme_dark--font-heading1_size: 33px; --theme_dark--font-heading2_size: 25.3px; --theme_dark--font-heading3_size: 19.5px; + --theme_dark--font-label_size: 15px; --theme_dark--font-body_size: 15px; --theme_dark--font-code_size: 13.5px;