From 3ee4b84ad49082577285cbdc2d1ae550c3bfb550 Mon Sep 17 00:00:00 2001 From: Felix Date: Thu, 11 Feb 2021 22:22:23 +0100 Subject: [PATCH] fine-tune font size --- _sass/style.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/_sass/style.scss b/_sass/style.scss index c4ea4f9..b84d9d9 100644 --- a/_sass/style.scss +++ b/_sass/style.scss @@ -53,10 +53,12 @@ p, code, ul, ol { font-weight: 400; } -main { - p, code, ul, ol { - font-size: 1.3rem; - line-height: 2rem; +@media(min-width: $content-width) { + main { + p, code, ul, ol { + font-size: 1.2rem; + line-height: 1.8rem; + } } }