Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/kimi-toolbar-radius.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@moonshot-ai/kimi-code": patch
---

Unify the Kimi theme composer card and toolbar bottom radius using the `--r-xl` radius token.
7 changes: 6 additions & 1 deletion apps/kimi-web/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
--r-sm: 8px;
--r-md: 12px;
--r-lg: 16px;
--r-xl: 20px;
--ui-font-size: 14px;
--ui-font-size-sm: calc(var(--ui-font-size) - 1px);
--ui-font-size-xs: calc(var(--ui-font-size) - 2px);
Expand Down Expand Up @@ -876,10 +877,14 @@ html[data-color-scheme="dark"][data-theme="kimi"] {
/* Composer: the one card that keeps a shadow (effect.shadow.inputDefault),
with the chat-input radius documented in web-best-practices §8. */
html[data-theme="kimi"] .composer-card {
border-radius: 20px;
border-radius: var(--r-xl);
box-shadow: 0 5px 16px -4px rgba(0, 0, 0, 0.07);
}

html[data-theme="kimi"] .toolbar {
border-radius: 0 0 var(--r-xl) var(--r-xl);
}

/* Cards stay flat: no hover lift, no shadow (Quiet Utility / card.md). */
html[data-theme="kimi"] .box:hover {
transform: none;
Expand Down