From 60622a19f06892496ca7fa1e1616942420c9c497 Mon Sep 17 00:00:00 2001 From: Sean Hammond Date: Sat, 8 Jan 2022 11:50:53 +0000 Subject: [PATCH] Smaller body font Revert to the browser default of 16px while keeping the 28px line height. I prefer this, makes the text more breathable / readable. Doesn't seem to break the vertical rhythm. --- _sass/_kbd.scss | 2 +- _sass/_variables.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_sass/_kbd.scss b/_sass/_kbd.scss index a131cf4..c672415 100644 --- a/_sass/_kbd.scss +++ b/_sass/_kbd.scss @@ -5,7 +5,7 @@ kbd { border-radius: 3px; color: #444d56; font-family: var(--code-font-family); - font-size: 11px; + font-size: 12px; padding-left: 5px; padding-right: 5px; padding-top: 4px; diff --git a/_sass/_variables.scss b/_sass/_variables.scss index a7e658c..aaab524 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -14,7 +14,7 @@ --pre-code-color: inherit; --body-font-family: 'Open Sans', sans-serif; - --body-font-size: 18px; + --body-font-size: 16px; --body-line-height: 28px; --normal-font-weight: 400;