fix dark issue in itemRow and total taxes

This commit is contained in:
yashkanakiya
2023-03-30 11:35:10 +05:30
parent db89a93faa
commit c541114992
2 changed files with 4 additions and 4 deletions

View File

@ -138,7 +138,7 @@
<div class="flex items-center justify-center w-6 h-10 mx-2">
<BaseIcon
v-if="showRemoveButton"
class="h-5 dark:text-red-400 text-red-400 cursor-pointer"
class="h-5 dark:text-red-400 cursor-pointer"
name="TrashIcon"
@click="store.removeItem(index)"
/>

View File

@ -1,14 +1,14 @@
<template>
<div class="flex items-center justify-between w-full mt-2 text-sm">
<label class="font-semibold leading-5 text-gray-500 uppercase">
<label class="font-semibold leading-5 text-gray-500 uppercase dark:text-gray-300">
{{ tax.name }} ({{ tax.percent }} %)
</label>
<label class="flex items-center justify-center text-lg text-black">
<label class="flex items-center justify-center text-lg text-black dark:text-white">
<BaseFormatMoney :amount="tax.amount" :currency="currency" />
<BaseIcon
name="TrashIcon"
class="h-5 ml-2 cursor-pointer"
class="h-5 ml-2 cursor-pointer dark:text-red-400"
@click="$emit('remove', tax.id)"
/>
</label>