Browse Source

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
pull/588/head
ImmaZoni 4 years ago
parent
commit
bf281f4875
No known key found for this signature in database GPG Key ID: 68E55D3F8ED83259
  1. 4
      src/components/Status.vue

4
src/components/Status.vue

@ -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>

Loading…
Cancel
Save