refactor(ui): cleanup vue.js app initialization code and logic
[e-mobility-charging-stations-simulator.git] / ui / web / src / App.vue
CommitLineData
32de5a57 1<template>
32de5a57
LM
2 <router-view />
3</template>
4
5<style>
6#app {
1d41bc6b
JB
7 height: fit-content;
8 width: fit-content;
32de5a57
LM
9 font-family: Avenir, Helvetica, Arial, sans-serif;
10 -webkit-font-smoothing: antialiased;
11 -moz-osx-font-smoothing: grayscale;
9dc8b66f
JB
12 color: black;
13 background-color: white;
32de5a57
LM
14}
15
16body {
1d41bc6b
JB
17 height: fit-content;
18 width: fit-content;
a64b9a64
JB
19 margin: 0.005%;
20 padding: 0.005%;
32de5a57
LM
21}
22</style>