refactor(ui): refine action container styling
[e-mobility-charging-stations-simulator.git] / ui / web / src / App.vue
index 1f2dcf85b10dfd101d9b5647150c6861c164da5c..aee9c5d0ef3a2aca9cbc412da5e359668236eadd 100644 (file)
@@ -1,6 +1,6 @@
 <template>
   <router-view />
-  <Container id="action">
+  <Container v-show="$route.path !== '/'" id="action-container">
     <router-view name="action" />
   </Container>
 </template>
@@ -12,8 +12,8 @@ import Container from '@/components/Container.vue'
 <style>
 #app {
   height: fit-content;
-  width: fit-content;
-  font-family: Avenir, Helvetica, Arial, sans-serif;
+  width: 100%;
+  font-family: Tahoma, 'Arial Narrow', Arial, Helvetica, sans-serif;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   display: flex;
@@ -22,12 +22,13 @@ import Container from '@/components/Container.vue'
   background-color: white;
 }
 
-#action {
+#action-container {
   min-width: max-content;
   display: flex;
   flex-direction: column;
-  align-items: center;
   justify-content: center;
+  align-items: center;
+  text-align: center;
   margin: 0.1%;
   padding: 0.1%;
   border: solid black;