From 9771093dcca3416e863eb03b006b9caaa74f19fa Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 24 May 2023 10:00:28 +0200 Subject: [PATCH] style: reduce font size on smaller mobile devices for readability according to some feedback, smaller fonts fit more words on a line and makes the text more readable. --- sass/_picostyle.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sass/_picostyle.scss b/sass/_picostyle.scss index 4156149..31151c6 100644 --- a/sass/_picostyle.scss +++ b/sass/_picostyle.scss @@ -8,13 +8,13 @@ // "Segoe UI Symbol", "Noto Color Emoji"; --line-height: 1.5; --font-weight: 400; - --font-size: 20px; + --font-size: 16px; // responsive typography @if $enable-responsive-typography { @if map-get($breakpoints, "sm") { @media (min-width: map-get($breakpoints, "sm")) { - --font-size: 20px; + --font-size: 18px; } } @if map-get($breakpoints, "md") {