diff --git a/apps/kimi-web/src/components/ConversationPane.vue b/apps/kimi-web/src/components/ConversationPane.vue index 018deadb8..ede783b44 100644 --- a/apps/kimi-web/src/components/ConversationPane.vue +++ b/apps/kimi-web/src/components/ConversationPane.vue @@ -871,7 +871,9 @@ onUnmounted(() => { display: flex; flex-direction: column; gap: 10px; - width: 260px; + /* Wider than the old 260px — the todo/task cards were cramped. */ + width: 300px; + max-width: calc(100vw - 32px); } @media (max-width: 1199px) { .float-stack { display: none; } diff --git a/apps/kimi-web/src/components/TasksCard.vue b/apps/kimi-web/src/components/TasksCard.vue index 32135c4aa..9cf7bf0c2 100644 --- a/apps/kimi-web/src/components/TasksCard.vue +++ b/apps/kimi-web/src/components/TasksCard.vue @@ -3,11 +3,14 @@ of the conversation pane, codex-style). Shows the running tasks only; clicking the header jumps to the full ~/tasks tab. -->