Skip to content

Commit

Permalink
Refactor font sizing to inherit by default
Browse files Browse the repository at this point in the history
Fixes #6
  • Loading branch information
richardolsson committed Mar 23, 2017
1 parent e805a71 commit ac873fe
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/scss/_base.scss
@@ -1,6 +1,10 @@
body {
font-size: 10px;
}

* {
font-family: 'Poppins', sans-serif;
font-size: 10px;
font-size: inherit;
}

h1 {
Expand All @@ -25,13 +29,13 @@ img {
}

@include medium-screen {
* {
body {
font-size: 11px;
}
}

@include large-screen {
* {
body {
font-size: 12px;
}
}

0 comments on commit ac873fe

Please sign in to comment.