fix(home): 将消息容器的宽度属性改为最大宽度

避免消息内容过长时超出容器宽度,保持布局的灵活性
This commit is contained in:
yangzhe 2026-03-18 11:21:38 +08:00
parent 1536637159
commit 86b3a51206
1 changed files with 2 additions and 2 deletions

View File

@ -1783,12 +1783,12 @@ export default {
}
.message-content-width {
width: 70%;
max-width: 70%;
}
/* 回答反馈容器,跟随左侧消息,右下角对齐 */
.feedback-container {
width: 70%;
max-width: 70%;
margin-left: 80rpx; /* 头像宽度64rpx + 间距16rpx */
display: flex;
justify-content: flex-end;