Redesign Twin Workspace: fix scrolling, grouped nav rail, task-oriented layout#85
Merged
Merged
Conversation
…ed layout The view rendered in normal document flow inside #app (100vh, overflow:hidden), so content below the fold was unreachable. The workspace now owns its scrolling: fixed header, fixed grouped nav rail, and an independently scrolling main pane. - Nav rail groups destinations by task (Work / Review / Configure / Help) with monospace counts; active item gets an accent bar. - Overview is a triage dashboard: clickable stat tiles plus compact decision/action-gap rows that jump to their tab, instead of full cards with inline forms. - Decision cards carry their state on a colored left edge (pending / sealed / matched / missed) with matching status chips, and the outcome form is a labeled grid inside a details section that stays open until an outcome is recorded. - Decision prediction tests now navigate to the Decisions tab, where full cards live after the redesign. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Merged
WKJBryan
added a commit
that referenced
this pull request
Jun 17, 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.
Summary
The Twin Workspace page could not scroll:
#appisheight: 100vh; overflow: hidden, so every routed view must own its scrolling — the old view used plain document flow and everything below the fold was unreachable. This PR rebuilds the view as a proper app shell and reorganizes it around tasks.TwinReviewDecisions.spec.jsnow navigates to the Decisions tab, where full cards live after the redesignTest plan
npm run test:run)npm run buildsucceeds🤖 Generated with Claude Code