chore: Optimize component styles and interactions (#23250) (#23543)

This commit is contained in:
HyaCinth
2025-08-07 14:19:38 +08:00
committed by GitHub
parent ad1b1193fa
commit 2931c891a7
3 changed files with 5 additions and 5 deletions

View File

@@ -284,9 +284,9 @@ const Chat: FC<ChatProps> = ({
{
!noStopResponding && isResponding && (
<div className='mb-2 flex justify-center'>
<Button onClick={onStopResponding}>
<StopCircle className='mr-[5px] h-3.5 w-3.5 text-gray-500' />
<span className='text-xs font-normal text-gray-500'>{t('appDebug.operation.stopResponding')}</span>
<Button className='border-components-panel-border bg-components-panel-bg text-components-button-secondary-text' onClick={onStopResponding}>
<StopCircle className='mr-[5px] h-3.5 w-3.5' />
<span className='text-xs font-normal'>{t('appDebug.operation.stopResponding')}</span>
</Button>
</div>
)