refactor(ui): trivial code cleanup
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / Container.vue
1 <template>
2 <div class="container">
3 <slot></slot>
4 </div>
5 </template>
6
7 <style>
8 .container {
9 flex: auto;
10 }
11 </style>