kandimat-user-app/src/app/app.vue

34 lines
503 B
Vue
Raw Normal View History

2017-08-10 23:14:45 +02:00
<template>
<div id="app">
<main>
<router-view></router-view>
</main>
</div>
</template>
<script>
export default {
name: 'Eur-O-Mat'
}
</script>
<style lang="scss">
@import "~node_modules/normalize.css/normalize";
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
margin: 0;
}
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>