Combined PR (#191)
[e-mobility-charging-stations-simulator.git] / src / ui / web / src / App.vue
CommitLineData
32de5a57
LM
1<template>
2 <!-- <nav>
3 <router-link to="/">Home</router-link> |
4 <router-link to="/about">About</router-link>
5 </nav> -->
6 <router-view />
7</template>
8
9<style>
10#app {
11 height: 100%;
12 width: 100%;
13 font-family: Avenir, Helvetica, Arial, sans-serif;
14 -webkit-font-smoothing: antialiased;
15 -moz-osx-font-smoothing: grayscale;
16 color: #2c3e50;
17}
18
19body {
20 margin: 0;
21 padding: 0;
22 height: 100vh;
23 width: 100vw;
24 background-color: rgb(233, 227, 227);
25}
26</style>