fix(ui): ensure consistent styling on all buttons
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / Button.vue
index 2b9bfaec38f9d1688ddf2c0cf5899908843ed6b0..6d928342684a35b96da3691314b634b580da711a 100644 (file)
@@ -1,5 +1,11 @@
 <template>
-  <button type="button">
+  <button type="button" class="button">
     <slot></slot>
   </button>
 </template>
+
+<style>
+.button {
+  flex: auto;
+}
+</style>