From 2a959b471a0e05ff44c3917ba74b6d3df9b7c1a3 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 3 May 2019 00:56:40 -0400 Subject: [PATCH] Move the base-font-size from body to html as that's where rem is derived from --- resources/assets/sass/app.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/sass/app.scss b/resources/assets/sass/app.scss index 96cd90c..7f9ab1c 100644 --- a/resources/assets/sass/app.scss +++ b/resources/assets/sass/app.scss @@ -33,6 +33,7 @@ html { width: 100%; + font-size: $base-font-size; &.no-scroll { overflow-y: hidden; @@ -43,7 +44,6 @@ body { @include font-sans; width: 100%; color: $c-text; - font-size: $base-font-size; -webkit-overflow-scrolling: touch; }