fix(kimi-web): make ask-user question card scrollable on mobile#1388
fix(kimi-web): make ask-user question card scrollable on mobile#1388mikkelchokolate wants to merge 1 commit into
Conversation
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 1f98782b0b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
1f98782 to
fd932ee
Compare
|
@codex review |
|
@chatgpt-codex-connector please re-review the latest commit. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: fd932eea05
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
fd932ee to
5cb2506
Compare
|
@chatgpt-codex-connector rereview please. Removed the jsdom component test and reverted package.json/pnpm-lock changes per the package AGENTS.md. The PR now contains only the CSS fix in QuestionCard.vue. |
|
Codex Review: Didn't find any major issues. You're on a roll. Reviewed commit: ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
On mobile the app shell disables document scrolling, and the bottom dock (ChatDock) has no max-height or overflow. A question card with many/long options could grow past the viewport, making the Submit button unreachable.
This change constrains QuestionCard on narrow viewports (<=640px) to a flex column with a capped height, and makes .ui-card__body scrollable while the header/footer stay pinned.
Fixes #1400