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

45 lines
623 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;
}
2017-08-10 23:47:40 +02:00
html,
2017-08-10 23:14:45 +02:00
body {
2017-08-10 23:47:40 +02:00
width: 100vw;
height: 100vh;
2017-08-10 23:14:45 +02:00
}
2017-08-10 23:47:40 +02:00
body {
2017-08-10 23:14:45 +02:00
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2017-08-10 23:47:40 +02:00
button {
padding: 10px;
}
main {
max-width: 50vw;
margin: 0 auto;
}
2017-08-10 23:14:45 +02:00
</style>