Merge pull request #1227 from pikasTech/fix/1224-user-message-bubbles

fix: keep user workbench messages horizontal
This commit is contained in:
Lyon
2026-06-15 01:36:26 +08:00
committed by GitHub
+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;
}