mirror of
https://github.com/langgenius/dify.git
synced 2026-04-29 12:37:20 +08:00
fix: marketplace item install hover
This commit is contained in:
parent
c9c3d03878
commit
95e46806a4
@ -52,8 +52,13 @@ const Item: FC<Props> = ({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* Action */}
|
{/* Action */}
|
||||||
<div className={cn(!open ? 'hidden' : 'flex', 'system-xs-medium h-4 items-center space-x-1 text-components-button-secondary-accent-text group-hover/plugin:flex')}>
|
<div className={cn(!open ? 'hidden' : 'flex', 'system-xs-medium h-4 items-center space-x-1 text-components-button-secondary-accent-text group-hover/plugin:flex')}>
|
||||||
<div className='cursor-pointer px-1.5' onClick={showInstallModal}>{t('plugin.installAction')}</div>
|
<div
|
||||||
|
className='cursor-pointer rounded-md px-1.5 py-0.5 hover:bg-state-base-hover'
|
||||||
|
onClick={showInstallModal}
|
||||||
|
>
|
||||||
|
{t('plugin.installAction')}
|
||||||
|
</div>
|
||||||
<Action
|
<Action
|
||||||
open={open}
|
open={open}
|
||||||
onOpenChange={setOpen}
|
onOpenChange={setOpen}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user