feat(ui): enhance charging stations list structure
[e-mobility-charging-stations-simulator.git] / ui / web / src / App.vue
1 <template>
2 <router-view />
3 </template>
4
5 <style>
6 #app {
7 height: fit-content;
8 width: fit-content;
9 font-family: Avenir, Helvetica, Arial, sans-serif;
10 -webkit-font-smoothing: antialiased;
11 -moz-osx-font-smoothing: grayscale;
12 color: black;
13 background-color: white;
14 }
15
16 body {
17 height: fit-content;
18 width: fit-content;
19 margin: 0.001%;
20 padding: 0.001%;
21 }
22 </style>