fix placeholder

This commit is contained in:
yashkanakiya
2023-03-29 16:47:01 +05:30
parent 6402771cb8
commit e9abb197b7
5 changed files with 8 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<BaseContentPlaceholders <BaseContentPlaceholders
:rounded="true" :rounded="true"
class="relative flex justify-between w-full p-3 bg-white rounded shadow lg:col-span-3 xl:p-4" class="relative flex justify-between w-full p-3 bg-white rounded shadow lg:col-span-3 xl:p-4 dark:bg-gray-800"
> >
<div> <div>
<BaseContentPlaceholdersText <BaseContentPlaceholdersText

View File

@ -12,6 +12,7 @@
shadow shadow
lg:col-span-2 lg:col-span-2
xl:p-4 xl:p-4
dark:bg-gray-800
" "
> >
<div> <div>

View File

@ -119,11 +119,11 @@
<template #cell-actions="{ row }"> <template #cell-actions="{ row }">
<BaseDropdown> <BaseDropdown>
<template #activator> <template #activator>
<BaseIcon name="DotsHorizontalIcon" class="h-5 text-gray-500" /> <BaseIcon name="DotsHorizontalIcon" class="h-5 text-gray-500 dark:text-gray-200" />
</template> </template>
<router-link :to="`estimates/${row.data.id}/view`"> <router-link :to="`estimates/${row.data.id}/view`">
<BaseDropdownItem> <BaseDropdownItem>
<BaseIcon name="EyeIcon" class="h-5 mr-3 text-gray-600" /> <BaseIcon name="EyeIcon" class="h-5 mr-3 text-gray-600 dark:text-gray-200" />
{{ $t('general.view') }} {{ $t('general.view') }}
</BaseDropdownItem> </BaseDropdownItem>
</router-link> </router-link>

View File

@ -126,11 +126,11 @@
<template #cell-actions="{ row }"> <template #cell-actions="{ row }">
<BaseDropdown> <BaseDropdown>
<template #activator> <template #activator>
<BaseIcon name="DotsHorizontalIcon" class="h-5 text-gray-500" /> <BaseIcon name="DotsHorizontalIcon" class="h-5 text-gray-500 dark:text-gray-200" />
</template> </template>
<router-link :to="`invoices/${row.data.id}/view`"> <router-link :to="`invoices/${row.data.id}/view`">
<BaseDropdownItem> <BaseDropdownItem>
<BaseIcon name="EyeIcon" class="h-5 mr-3 text-gray-600" /> <BaseIcon name="EyeIcon" class="h-5 mr-3 text-gray-600 dark:text-gray-200" />
{{ $t('general.view') }} {{ $t('general.view') }}
</BaseDropdownItem> </BaseDropdownItem>
</router-link> </router-link>

View File

@ -111,11 +111,11 @@
<template #cell-actions="{ row }"> <template #cell-actions="{ row }">
<BaseDropdown> <BaseDropdown>
<template #activator> <template #activator>
<BaseIcon name="DotsHorizontalIcon" class="w-5 text-gray-500" /> <BaseIcon name="DotsHorizontalIcon" class="w-5 text-gray-500 dark:text-gray-200" />
</template> </template>
<router-link :to="`payments/${row.data.id}/view`"> <router-link :to="`payments/${row.data.id}/view`">
<BaseDropdownItem> <BaseDropdownItem>
<BaseIcon name="EyeIcon" class="h-5 mr-3 text-gray-600" /> <BaseIcon name="EyeIcon" class="h-5 mr-3 text-gray-600 dark:text-gray-200" />
{{ $t('general.view') }} {{ $t('general.view') }}
</BaseDropdownItem> </BaseDropdownItem>
</router-link> </router-link>