Imported normalize styles into a un-scoped style section of App.vue

This commit is contained in:
2019-11-16 21:03:48 +01:00
parent 178f21e6c8
commit cb0d3633ac
2 changed files with 10 additions and 3 deletions

View File

@@ -1,7 +1,9 @@
<template>
<div>
<h1>hello world</h1>
<router-view />
</div>
</template>
<style lang="scss">
@import './styles/normalize';
</style>

5
frontend/styles/normalize.scss vendored Normal file
View File

@@ -0,0 +1,5 @@
body {
margin: 0;
padding: 0;
}