style(MessageRecord): 统一消息气泡的圆角样式

将消息气泡的圆角从不对称样式(4px 18px 18px 18px)改为统一的10px圆角,提升视觉一致性
This commit is contained in:
超级老白兔
2025-09-08 15:27:57 +08:00
parent f13d623d14
commit 97cb2b072b

View File

@@ -55,7 +55,7 @@
.messageBubble { .messageBubble {
background: #1890ff; background: #1890ff;
color: white; color: white;
border-radius: 4px 18px 18px 18px; border-radius: 10px;
} }
} }
@@ -65,7 +65,7 @@
.messageBubble { .messageBubble {
background: white; background: white;
color: #262626; color: #262626;
border-radius: 4px 18px 18px 18px; border-radius: 10px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} }
} }