mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-18 13:14:58 +00:00
* style(web-shell): polish chat UI * fix(web-shell): address chat polish review feedback --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
41 lines
595 B
CSS
41 lines
595 B
CSS
.message {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid var(--warning-color);
|
|
border-radius: 8px;
|
|
color: var(--foreground);
|
|
max-height: 50vh;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.content {
|
|
min-height: 0;
|
|
overflow: auto;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
.question {
|
|
color: var(--warning-color);
|
|
font-weight: 600;
|
|
line-height: 1.45;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.prefix {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.answer {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.pending {
|
|
color: var(--warning-color);
|
|
}
|
|
|
|
.shortcuts {
|
|
margin-top: 10px;
|
|
color: var(--muted-foreground);
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
}
|