chore(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / Button.vue
... / ...
CommitLineData
1<template>
2 <button
3 class="button"
4 type="button"
5 >
6 <slot />
7 </button>
8</template>
9
10<style>
11.button {
12 display: flex;
13 flex: auto;
14 justify-content: center;
15 align-items: center;
16 font: small-caption;
17}
18</style>