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/feature-panel/index.tsx | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/components/app/configuration/base/feature-panel/index.tsx b/app/components/app/configuration/base/feature-panel/index.tsx index ec5ab96..9c4adbd 100644 --- a/app/components/app/configuration/base/feature-panel/index.tsx +++ b/app/components/app/configuration/base/feature-panel/index.tsx @@ -23,15 +23,15 @@ children, }) => { return ( - <div className={cn('rounded-xl border-l-[0.5px] border-t-[0.5px] border-effects-highlight bg-background-section-burn pb-3', noBodySpacing && 'pb-0', className)}> + <div className={cn('rounded-xl border-t-[0.5px] border-l-[0.5px] bg-background-section-burn pb-3', noBodySpacing && '!pb-0', className)}> {/* Header */} <div className={cn('px-3 pt-2', hasHeaderBottomBorder && 'border-b border-divider-subtle')}> - <div className='flex h-8 items-center justify-between'> - <div className='flex shrink-0 items-center space-x-1'> - {headerIcon && <div className='flex h-6 w-6 items-center justify-center'>{headerIcon}</div>} - <div className='system-sm-semibold text-text-secondary'>{title}</div> + <div className='flex justify-between items-center h-8'> + <div className='flex items-center space-x-1 shrink-0'> + {headerIcon && <div className='flex items-center justify-center w-6 h-6'>{headerIcon}</div>} + <div className='text-text-secondary system-sm-semibold'>{title}</div> </div> - <div className='flex items-center gap-2'> + <div className='flex gap-2 items-center'> {headerRight && <div>{headerRight}</div>} </div> </div> -- Gitblit v1.8.0