mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-21 06:54:12 +00:00
* style(web-shell): polish chat UI * fix(web-shell): address chat polish review feedback --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
28 lines
375 B
CSS
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;
|
|
}
|
|
}
|