Merge branch 'dark-mode' of github.com:crater-invoice/crater into dark-view-create

This commit is contained in:
yogesh-gohil
2023-03-30 17:49:53 +05:30
38 changed files with 167 additions and 156 deletions

View File

@ -30,7 +30,16 @@
<label
v-else
class="flex items-center justify-center m-0 text-lg text-black uppercase dark:text-white"
class="
flex
items-center
justify-center
m-0
text-lg
text-black
dark:text-white
uppercase
"
>
<BaseFormatMoney
:amount="store.getSubTotal"
@ -60,7 +69,16 @@
<label
v-else-if="store[storeProp].tax_per_item === 'YES'"
class="flex items-center justify-center m-0 text-lg text-black uppercase "
class="
flex
items-center
justify-center
m-0
text-lg
text-black
dark:text-white
uppercase
"
>
<BaseFormatMoney :amount="tax.amount" :currency="defaultCurrency" />
</label>
@ -167,7 +185,16 @@
</div>
<div
class="flex items-center justify-between w-full pt-2 mt-5 border-t border-gray-200 border-solid dark:border-gray-600"
class="
flex
items-center
justify-between
w-full
pt-2
mt-5
border-t border-gray-200 border-solid
dark:border-gray-600
"
>
<BaseContentPlaceholders v-if="isLoading">
<BaseContentPlaceholdersText :lines="1" class="w-16 h-5" />

View File

@ -3,7 +3,16 @@
<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 dark:text-white">
<label
class="
flex
items-center
justify-center
text-lg
text-black
dark:text-white
"
>
<BaseFormatMoney :amount="tax.amount" :currency="currency" />
<BaseIcon

View File

@ -1,6 +1,6 @@
<template>
<div>
<label class="flex text-gray-800 font-medium text-sm mb-2">
<label class="flex text-gray-800 font-medium text-sm mb-2 dark:text-gray-300">
{{ $t('general.select_template') }}
<span class="text-sm text-red-500"> *</span>
</label>