This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/App.vue

20 lines
264 B
Vue
Raw Normal View History

2021-06-27 14:38:22 +02:00
<template>
2021-06-27 17:09:03 +02:00
<router-view></router-view>
2021-06-27 14:38:22 +02:00
</template>
2021-06-27 17:09:03 +02:00
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
box-sizing: border-box;
}
html {
font-family: 'Roboto', sans-serif;
}
body {
margin: 0;
}
</style>