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/config-var/select-var-type.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/app/configuration/config-var/select-var-type.tsx b/app/components/app/configuration/config-var/select-var-type.tsx index f82e931..14d4f92 100644 --- a/app/components/app/configuration/config-var/select-var-type.tsx +++ b/app/components/app/configuration/config-var/select-var-type.tsx @@ -28,11 +28,11 @@ const SelectItem: FC<ItemProps> = ({ text, type, value, Icon, onClick }) => { return ( <div - className='flex h-8 cursor-pointer items-center rounded-lg px-3 hover:bg-gray-50' + className='flex items-center px-3 h-8 rounded-lg hover:bg-gray-50 cursor-pointer' onClick={() => onClick(value)} > - {Icon ? <Icon className='h-4 w-4 text-gray-500' /> : <InputVarTypeIcon type={type!} className='h-4 w-4 text-gray-500' />} - <div className='ml-2 truncate text-xs text-gray-600'>{text}</div> + {Icon ? <Icon className='w-4 h-4 text-gray-500' /> : <InputVarTypeIcon type={type!} className='w-4 h-4 text-gray-500' />} + <div className='ml-2 text-xs text-gray-600 truncate'>{text}</div> </div> ) } @@ -60,7 +60,7 @@ <OperationBtn type='add' className={cn(open && 'bg-gray-200')} /> </PortalToFollowElemTrigger> <PortalToFollowElemContent style={{ zIndex: 1000 }}> - <div className='min-w-[192px] rounded-lg border border-gray-200 bg-white shadow-lg'> + <div className='bg-white border border-gray-200 shadow-lg rounded-lg min-w-[192px]'> <div className='p-1'> <SelectItem type={InputVarType.textInput} value='string' text={t('appDebug.variableConfig.string')} onClick={handleChange}></SelectItem> <SelectItem type={InputVarType.paragraph} value='paragraph' text={t('appDebug.variableConfig.paragraph')} onClick={handleChange}></SelectItem> -- Gitblit v1.8.0