mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-09 17:19:02 +00:00
* style(web-shell): polish chat UI * fix(web-shell): address chat polish review feedback --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
43 lines
798 B
CSS
43 lines
798 B
CSS
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 0 16px;
|
|
font-family: var(--font-sans, system-ui, sans-serif);
|
|
text-align: center;
|
|
}
|
|
|
|
.titleRow {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.35em;
|
|
color: var(--foreground);
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
line-height: 36px;
|
|
}
|
|
|
|
.title {
|
|
background: var(--agent-logo-gradient);
|
|
background-clip: text;
|
|
color: var(--primary, var(--agent-blue-500));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--muted-foreground);
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 24px;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.titleRow {
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
}
|
|
}
|