Skip to content

Commit 57e3349

Browse files
committed
improve(css): increase text size on larger screens.
1 parent 974523e commit 57e3349

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/styles/app.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ $green: #398277;
99
$purple: #403D58;
1010
$yellow: #FFD45E;
1111

12+
html {
13+
font-size: 62.5%
14+
}
15+
16+
@media screen and (min-width: 30em) {
17+
html {
18+
font-size: 75%;
19+
}
20+
}
21+
1222
body {
1323
font-family: $body-font;
1424
background-color: white;

0 commit comments

Comments
 (0)