mirror of
https://github.com/romancm/gamebrary
synced 2024-11-15 07:57:19 +00:00
Moved global styles to reset scss file
This commit is contained in:
parent
4d5cb1c38e
commit
a8bfd1abf7
2 changed files with 8 additions and 12 deletions
10
src/App.vue
10
src/App.vue
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue