|
@@ -78,10 +78,10 @@ const TagFilter: FC<TagFilterProps> = ({
|
|
|
className='block'
|
|
|
>
|
|
|
<div className={cn(
|
|
|
- 'flex items-center gap-1 px-2 h-8 rounded-lg border-[0.5px] border-transparent bg-gray-200 cursor-pointer hover:bg-gray-300',
|
|
|
- open && !value.length && '!bg-gray-300 hover:bg-gray-300',
|
|
|
- !open && !!value.length && '!bg-white/80 shadow-xs !border-black/5 hover:!bg-gray-200',
|
|
|
- open && !!value.length && '!bg-gray-200 !border-black/5 shadow-xs hover:!bg-gray-200',
|
|
|
+ 'flex items-center gap-1 px-2 h-8 rounded-lg border-[0.5px] border-transparent bg-white cursor-pointer hover:bg-gray-300',
|
|
|
+ open && !value.length && '!bg-white hover:bg-white',
|
|
|
+ !open && !!value.length && '!bg-white shadow-xs !border-black/5 hover:!bg-white',
|
|
|
+ open && !!value.length && '!bg-white !border-black/5 shadow-xs hover:!bg-white',
|
|
|
)}>
|
|
|
<div className='p-[1px]'>
|
|
|
<Tag01 className='h-3.5 w-3.5 text-gray-700' />
|