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/base/features/new-feature-panel/annotation-reply/config-param.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/base/features/new-feature-panel/annotation-reply/config-param.tsx b/app/components/base/features/new-feature-panel/annotation-reply/config-param.tsx index e2febcf..c192fcb 100644 --- a/app/components/base/features/new-feature-panel/annotation-reply/config-param.tsx +++ b/app/components/base/features/new-feature-panel/annotation-reply/config-param.tsx @@ -3,18 +3,18 @@ import React from 'react' import Tooltip from '@/app/components/base/tooltip' -export const Item: FC<{ title: string; tooltip: string; children: React.JSX.Element }> = ({ +export const Item: FC<{ title: string; tooltip: string; children: JSX.Element }> = ({ title, tooltip, children, }) => { return ( <div> - <div className='mb-1 flex items-center space-x-1'> - <div className='system-sm-semibold py-1 text-text-secondary'>{title}</div> + <div className='flex items-center space-x-1 mb-1'> + <div className='py-1 system-sm-semibold text-text-secondary'>{title}</div> <Tooltip popupContent={ - <div className='system-sm-regular max-w-[200px] text-text-secondary'>{tooltip}</div> + <div className='max-w-[200px] system-sm-regular text-text-secondary'>{tooltip}</div> } /> </div> -- Gitblit v1.8.0