change booking status text color

This commit is contained in:
omair saleh
2021-06-17 12:51:41 +08:00
parent c9f48e72ed
commit 426ed39a8b
@@ -42,7 +42,7 @@
</div>
<div class="col-auto" v-if="!$store.getters.isAdmin">
<div class="font-heading fs-10 muted all-caps">status</div>
<div class="font-heading fs-8 all-caps text-white btn-rounded p-l-10 p-r-10 lh-15 mt-1" :class="[{'bg-warning': item.status !== 3}, {'bg-success': item.status === 3} ]">
<div class="font-heading fs-8 all-caps text-master btn-rounded p-l-10 p-r-10 lh-15 mt-1" :class="[{'bg-warning': item.status !== 3}, {'bg-success': item.status === 3} ]">
{{item.status === 3 ? 'Complete' : 'In Progress'}}
</div>
</div>