qwen-code/packages/web-shell/client/components/messages/GoalStatusMessage.module.css
ytahdn a384c4a21a
feat(web-shell): polish chat UI (#5893)
* style(web-shell): polish chat UI

* fix(web-shell): address chat polish review feedback

---------

Co-authored-by: ytahdn <ytahdn@gmail.com>
2026-06-26 15:38:23 +00:00

58 lines
653 B
CSS

.message {
display: flex;
gap: 6px;
font-family: var(--font-mono);
font-size: 13px;
line-height: 1.5;
color: var(--foreground);
}
.prefix {
width: 2ch;
flex-shrink: 0;
}
.body {
min-width: 0;
flex: 1;
}
.title {
font-weight: 600;
}
.muted {
color: var(--muted-foreground);
}
.accent {
color: var(--agent-blue-500);
}
.success {
color: var(--success-color);
}
.error {
color: var(--error-color);
}
.warning {
color: var(--warning-color);
}
.row {
display: flex;
gap: 1ch;
min-width: 0;
}
.label {
flex-shrink: 0;
color: var(--muted-foreground);
}
.value {
min-width: 0;
overflow-wrap: anywhere;
}