Refine sonar-project.properties
[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 display: flex;
10 box-sizing: border-box;
11 max-height: 100%;
12 max-width: 100%;
13 }
14 </style>