qwen-code/packages/web-shell/client/components/StreamingStatus.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

28 lines
375 B
CSS

.status {
flex-shrink: 0;
display: flex;
align-items: center;
gap: 6px;
padding: 4px 0;
font-size: 14px;
color: var(--muted-foreground);
}
.spinner {
color: var(--foreground);
}
.label {
color: var(--streaming-label-color);
}
.meta {
color: var(--muted-foreground);
font-size: 13px;
}
@media (max-width: 700px) {
.label {
display: none;
}
}