Moved global styles to reset scss file

This commit is contained in:
Roman Cervantes 2019-02-20 20:13:10 -07:00
parent 4d5cb1c38e
commit a8bfd1abf7
2 changed files with 8 additions and 12 deletions

View file

@ -225,16 +225,6 @@ export default {
#app > main { #app > main {
background: $color-gray; background: $color-gray;
} }
h1, h2, h3, h4, h5, h6 {
font-family: "Fira Sans", sans-serif;
font-weight: 700;
}
body, p, a, li, blockquote {
font-family: "Roboto", sans-serif;
font-weight: 400;
}
</style> </style>
<style lang="scss" rel="stylesheet/scss" scoped> <style lang="scss" rel="stylesheet/scss" scoped>

View file

@ -6,7 +6,13 @@
animation: a 500ms infinite linear; animation: a 500ms infinite linear;
} }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-family: "Fira Sans", sans-serif;
font-weight: 700;
margin: 0; margin: 0;
} }
body, p, a, li, blockquote {
font-family: "Roboto", sans-serif;
font-weight: 400;
}