移动端答案框溢出屏幕 #90

Closed
opened 2026-02-16 10:16:05 -05:00 by yindo · 0 comments
Owner

Originally created by @CarbonPool on GitHub (Jul 23, 2025).

复现:

  1. 输入问题发送
  2. 当workflow出现时,将出现溢出情况

发现问题存在app\components\chat\answer\index.tsx 188行左右

<div className={`ml-2 py-3 px-4 bg-gray-100 rounded-tr-2xl rounded-b-2xl ${workflowProcess && 'min-w-[480px]'}`}></div>

min-w-[480px]导致大部分移动手机端将溢出,我修改为min-w-[300px]得到解决,或移除

Originally created by @CarbonPool on GitHub (Jul 23, 2025). 复现: 1. 输入问题发送 2. 当workflow出现时,将出现溢出情况 发现问题存在`app\components\chat\answer\index.tsx` 188行左右 ```html <div className={`ml-2 py-3 px-4 bg-gray-100 rounded-tr-2xl rounded-b-2xl ${workflowProcess && 'min-w-[480px]'}`}></div> ``` min-w-[480px]导致大部分移动手机端将溢出,我修改为min-w-[300px]得到解决,或移除
yindo closed this issue 2026-02-16 10:16:05 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/webapp-conversation#90