Skip to content

Commit cda983b

Browse files
Moved font-size and line-height from html to body
Was not working as intended. Fixed by moving the tags to the body
2 parents 7ed8b15 + 51ded83 commit cda983b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

sass/base/defaults.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
html {
22
background: $color01;
33
font-size: 62.5%;
4-
font-size: $font-size-default;
5-
line-height: $line-height-default;
64
color: $color02;
75
}
86

7+
body {
8+
font-size: $font-size-default;
9+
line-height: $line-height-default;
10+
}
11+
912
html, button, input, select, textarea {
1013
font-family: $font-pri;
1114
font-weight: normal;

0 commit comments

Comments
 (0)