From 3c097363ca7afe0e239d80385730b858602f08e3 Mon Sep 17 00:00:00 2001 From: 0xfff <0xfff@protonmail.com> Date: Wed, 28 Sep 2016 00:55:40 +0200 Subject: [PATCH] (Update) Typography: Reduce font size on small devices (100%) --- src/scss/global/_typography.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/scss/global/_typography.scss b/src/scss/global/_typography.scss index b3f6311..bc2a30a 100644 --- a/src/scss/global/_typography.scss +++ b/src/scss/global/_typography.scss @@ -110,6 +110,12 @@ body { @include fontSmoothing(); } +@include mq($to: small) { + html, body { + font-size: 100%; + } +} + h1 { @include font-title-xlarge(); }