aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
blob: 34945a9b16bac1d114513ba2f2243a8f9627d31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <router-view/>
</template>

<style>
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

#app {
  height: 100vh;
  max-height: 100vh;
}
</style>