Move the base-font-size from body to html as that's where rem is derived from

This commit is contained in:
Kevin MacMartin 2019-05-03 00:56:40 -04:00
parent 2066509c88
commit 2a959b471a

View file

@ -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;
}