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