Move web ui code in its own directory
[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 {
7 height: 100%;
8 width: 100%;
9 font-family: Avenir, Helvetica, Arial, sans-serif;
10 -webkit-font-smoothing: antialiased;
11 -moz-osx-font-smoothing: grayscale;
12 color: #2c3e50;
13}
14
15body {
16 margin: 0;
17 padding: 0;
18 height: 100vh;
19 width: 100vw;
20 background-color: rgb(233, 227, 227);
21}
22</style>