Adjust Status.vue to have the text be inline to the badge.

This is because with some languages the equivalent of *down* was overflowing the badge
This commit is contained in:
ImmaZoni 2021-10-06 20:23:56 -07:00
parent 22227be408
commit bf281f4875
No known key found for this signature in database
GPG key ID: 68E55D3F8ED83259

View file

@ -1,5 +1,7 @@
<template>
<span class="badge rounded-pill" :class=" 'bg-' + color ">{{ text }}</span>
<label class="badge badge-pill" :class=" 'bg-' + color ">
<span>{{ text }}</span>
</label>
</template>
<script>