From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/app/configuration/base/icons/remove-icon/index.tsx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app/components/app/configuration/base/icons/remove-icon/index.tsx b/app/components/app/configuration/base/icons/remove-icon/index.tsx index f4b30a9..e07a462 100644 --- a/app/components/app/configuration/base/icons/remove-icon/index.tsx +++ b/app/components/app/configuration/base/icons/remove-icon/index.tsx @@ -17,7 +17,7 @@ const computedIsHovered = isHoverStatus || isHovered return ( <div - className={cn(className, computedIsHovered && 'bg-[#FEE4E2]', 'flex h-6 w-6 cursor-pointer items-center justify-center rounded-md hover:bg-[#FEE4E2]')} + className={cn(className, computedIsHovered && 'bg-[#FEE4E2]', 'flex w-6 h-6 items-center justify-center rounded-md cursor-pointer hover:bg-[#FEE4E2]')} onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} onClick={onClick} -- Gitblit v1.8.0