fix: try-to-ask misalign (#29309)

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
非法操作 2025-12-09 11:00:37 +08:00 committed by GitHub
parent a0c8ebf487
commit 48efd2d174
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 5 deletions

View File

@ -4,7 +4,6 @@ import { useTranslation } from 'react-i18next'
import type { OnSend } from '../types'
import Button from '@/app/components/base/button'
import Divider from '@/app/components/base/divider'
import cn from '@/utils/classnames'
type TryToAskProps = {
suggestedQuestions: string[]
@ -20,12 +19,12 @@ const TryToAsk: FC<TryToAskProps> = ({
return (
<div className='mb-2 py-2'>
<div className={cn('mb-2.5 flex items-center justify-between gap-2', isMobile && 'justify-end')}>
<Divider bgStyle='gradient' className='h-px grow rotate-180' />
<div className="mb-2.5 flex items-center justify-between gap-2">
<Divider bgStyle='gradient' className='h-px !w-auto grow rotate-180' />
<div className='system-xs-medium-uppercase shrink-0 text-text-tertiary'>{t('appDebug.feature.suggestedQuestionsAfterAnswer.tryToAsk')}</div>
{!isMobile && <Divider bgStyle='gradient' className='h-px grow' />}
<Divider bgStyle='gradient' className='h-px !w-auto grow' />
</div>
<div className={cn('flex flex-wrap justify-center', isMobile && 'justify-end')}>
<div className="flex flex-wrap justify-center">
{
suggestedQuestions.map((suggestQuestion, index) => (
<Button