fix(orchestration): align Orcastrators "+" right edge with Projects "+" - #34
Merged
Merged
Conversation
The ORCASTRATORS header row was double-padded: the outer container has px-2 (0.5rem) and the inner header row also had px-2, putting the "+" right edge 1rem from the sidebar edge — ~8px further left than the Projects "+", which sits in a single px-2 row (0.5rem inset). Change the inner header row's right padding from px-2 to pl-2 pr-0 so the "+" right edge lands at 0.5rem, matching the Projects "+". Title left position and the entries below are unchanged (outer px-2 untouched). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Problem
The ORCASTRATORS section "+" (New Orcastrator) sat ~8px further left than the Projects "+". Its header row was double-padded: the outer container has
px-2(0.5rem) and the inner header row also hadpx-2(0.5rem), so the "+" right edge was 1rem from the sidebar edge. The Projects "+" lives in a singlepx-2row, so its right edge is 0.5rem from the edge.Fix
In
OrchestratorsSidebarSection.tsx, change the inner header row's padding frompx-2topl-2 pr-0— keep the left padding, drop the right. The "+" right edge now lands at 0.5rem, matching the Projects "+".px-2untouched → section title left edge and the orchestrator entries below are unchanged.SidebarHeader.tsx, the Button, and the icon are untouched.Verification
pnpm run typecheck— greenpnpm run build:desktop— green🤖 Generated with Claude Code