chore: bump volta pnpm version
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / Button.vue
index 2b9bfaec38f9d1688ddf2c0cf5899908843ed6b0..a18b8064791e448af8c6d4e8cb14807220f7a898 100644 (file)
@@ -1,5 +1,18 @@
 <template>
-  <button type="button">
-    <slot></slot>
+  <button
+    type="button"
+    class="button"
+  >
+    <slot />
   </button>
 </template>
+
+<style>
+.button {
+  display: flex;
+  flex: auto;
+  justify-content: center;
+  align-items: center;
+  font: small-caption;
+}
+</style>