From 86b3a51206b56b312eb3bdfc61c2c1a75e1de588 Mon Sep 17 00:00:00 2001 From: yangzhe Date: Wed, 18 Mar 2026 11:21:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(home):=20=E5=B0=86=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E5=AE=B9=E5=99=A8=E7=9A=84=E5=AE=BD=E5=BA=A6=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E6=9C=80=E5=A4=A7=E5=AE=BD=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 避免消息内容过长时超出容器宽度,保持布局的灵活性 --- pages/home/index/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/home/index/index.vue b/pages/home/index/index.vue index fc71d7c..a09e304 100644 --- a/pages/home/index/index.vue +++ b/pages/home/index/index.vue @@ -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;