1
0
forked from test/crm

chore: minor changes

This commit is contained in:
Shariq Ansari 2023-08-04 15:11:26 +05:30
parent 0096a43465
commit 5145fe9097
2 changed files with 7 additions and 7 deletions

View File

@ -110,7 +110,7 @@
enter-active-class="duration-300 ease-out"
enter-from-class="transform opacity-0"
enter-to-class="opacity-100"
leave-active-class="duration-200 ease-in"
leave-active-class="duration-300 ease-in"
leave-from-class="opacity-100"
leave-to-class="transform opacity-0"
>

View File

@ -81,7 +81,7 @@
>
<FeatherIcon
name="chevron-right"
class="h-4 text-gray-600 transition-all duration-200 ease-in-out"
class="h-4 text-gray-600 transition-all duration-300 ease-in-out"
:class="{ 'rotate-90': opened }"
/>
{{ section.label }}
@ -161,11 +161,12 @@
<template #default>{{
lead.data[field.name]
}}</template>
<template #suffix
><FeatherIcon
<template #suffix>
<FeatherIcon
:name="open ? 'chevron-up' : 'chevron-down'"
class="h-4"
/></template>
/>
</template>
</Button>
</template>
</Dropdown>
@ -211,7 +212,6 @@ import Activities from '@/components/Activities.vue'
import { TabGroup, TabList, Tab, TabPanels, TabPanel } from '@headlessui/vue'
import {
createResource,
Avatar,
FeatherIcon,
Autocomplete,
FormControl,
@ -223,7 +223,7 @@ import { usersStore } from '@/stores/users'
import { dateFormat, timeAgo, dateTooltipFormat } from '@/utils'
import { ref, computed, h } from 'vue'
import Breadcrumbs from '@/components/Breadcrumbs.vue'
import UserAvatar from '../components/UserAvatar.vue'
import UserAvatar from '@/components/UserAvatar.vue'
const { getUser, users } = usersStore()