style: increase global font size to 13px on larger screens (#21706)

This commit is contained in:
Frédéric Péters 2018-02-07 19:55:07 +01:00
parent de747e255f
commit f92a056f27
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,9 @@ html, body {
margin: 0;
font-family: $font-family;
font-size: 12px;
@media screen and (min-width: 1260px) {
font-size: 13px;
}
background: #f2f2f2;
color: #3c3c33;
}