From d2473037af50bf12f75783b043a4f59bcaa75f68 Mon Sep 17 00:00:00 2001 From: Leo THIVILLON <68474172+kernelb00t@users.noreply.github.com> Date: Tue, 21 May 2024 17:50:44 +0200 Subject: [PATCH] Adapt font size if laptop or not Sets the base font size to 10pt if laptop mode is enabled, or 11pt if not in laptop mode. --- src/sass/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sass/_variables.scss b/src/sass/_variables.scss index 8f559e61..389fd3e9 100644 --- a/src/sass/_variables.scss +++ b/src/sass/_variables.scss @@ -21,7 +21,7 @@ $large-font-family: Roboto, "M+ 1c", Cantarell, Sans-Serif; // font sizes $root-font-size: if($laptop == 'false', 15px, 13px); $subheading-size: if($laptop == 'false', 17px, 15px); -$base_font_size: 11pt; +$base_font_size: if($laptop == 'false', 11pt, 10pt); // opacities $higher_opacity: 0.9;