fix(ui): ensure the tool bar is sized at 100% width
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / Button.vue
CommitLineData
32de5a57 1<template>
14ee627a 2 <button type="button" class="button">
32de5a57
LM
3 <slot></slot>
4 </button>
5</template>
14ee627a
JB
6
7<style>
8.button {
3802683b 9 display: flex;
14ee627a 10 flex: auto;
3802683b 11 justify-content: center;
239bd875 12 align-items: center;
c6308554 13 font: small-caption;
14ee627a
JB
14}
15</style>