From b6d88b5995eb7242e2795bfd7092d06c411b36d1 Mon Sep 17 00:00:00 2001 From: Tolik Trek Date: Wed, 29 Jul 2026 23:22:31 +1000 Subject: [PATCH 1/5] fix(kimi-web): follow window width for the chat column The reading column was capped at 760px, leaving wide empty margins on large screens. Let it follow the pane width instead. --- .changeset/web-full-width-chat-column.md | 5 +++++ apps/kimi-web/src/components/chat/ConversationPane.vue | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changeset/web-full-width-chat-column.md diff --git a/.changeset/web-full-width-chat-column.md b/.changeset/web-full-width-chat-column.md new file mode 100644 index 0000000000..0287bc4dbd --- /dev/null +++ b/.changeset/web-full-width-chat-column.md @@ -0,0 +1,5 @@ +--- +"@moonshot-ai/kimi-code": patch +--- + +web: Let the chat column follow the window width instead of capping it at a fixed reading width, removing the wide empty margins on large screens. diff --git a/apps/kimi-web/src/components/chat/ConversationPane.vue b/apps/kimi-web/src/components/chat/ConversationPane.vue index 0464beac9b..e7ae5f133f 100644 --- a/apps/kimi-web/src/components/chat/ConversationPane.vue +++ b/apps/kimi-web/src/components/chat/ConversationPane.vue @@ -1530,7 +1530,9 @@ defineExpose({ loadComposerForEdit, focusComposer });