[agent-team] Fix homepage to use fixed viewport layout (ChatGPT-style)#114
Merged
verkyyi merged 1 commit intoApr 21, 2026
Merged
Conversation
…rnally Wraps the homepage in a `.resume-viewport` div (100dvh, flex column) so the page never scrolls vertically. `.chatp` grows to fill available space via `flex: 1` and `.chatp-messages` scrolls within it, replacing the old `max-height: 560px` cap with `min-height: 300px`. Closes #113. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
(agent-team:review) ReviewVerdict: ✅ Approve Spec alignment: All 7 acceptance criteria are met.
Plan adherence: Exactly the three files listed in the plan were changed ( Tests: Issues found: none. Nits (non-blocking)
🤖 agent-team / reviewer (/agent-team:review)
|
verkyyi
approved these changes
Apr 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #113
Summary
The homepage previously allowed the whole page to scroll as the chat grew, because the outer container was unconstrained. This PR introduces a
.resume-viewportwrapper (locked to100dvh) with.resume-mainas a flex-growing<main>, so the page height is fixed to the viewport..chatpnow usesflex: 1; min-height: 0to fill the available space, and.chatp-messagesreplaces the fixedmax-height: 560pxcap withmin-height: 300pxand scrolls within that container. The input bar stays anchored at the bottom at all times.Plan reference
Implemented from the plan posted in issue #113 comment by the Planner Agent.
Test status
cd web && npx vitest run→ ✅ 21 test files, 108 tests passed🤖 agent-team / implementer