fix: keep user workbench messages horizontal

This commit is contained in:
lyon
2026-06-15 01:35:40 +08:00
parent 21c5cf3add
commit 1f66d5aae7
+5 -1
View File
@@ -629,7 +629,9 @@
}
.message-card[data-role="user"] {
width: fit-content;
justify-self: end;
width: max-content;
min-width: min(120px, 100%);
max-width: min(720px, 100%);
margin-left: auto;
border-color: #bfdbfe;
@@ -639,6 +641,8 @@
}
.message-card[data-role="user"] .message-text {
max-width: 100%;
overflow-wrap: anywhere;
font-size: 13px;
line-height: 1.4;
}