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

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;
}
}