Full-height dashboard columns so drops land in short columns (v1.3.4)#83
Merged
Conversation
Columns were only as tall as their content, so the empty area below a short column wasn't part of any column and rejected drops. With two columns of very different heights, cards from the tall column couldn't be dropped into the short one (dead zones below it). Columns now stretch to the full dashboard height (align-items: stretch), making their whole area a valid drop target. Also widened the while-dragging "+" new-column rail 48->60px for easier targeting. Verified in a headless browser at 1940px: drop-target probe shows no dead zones below the short column; dropping into the short column at a low Y works; dropping into the 60px full-height rail creates a 3rd column; rest layout visually unchanged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013ffp2b19PUmzEU1fxpnURA
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.
Bug
In a 3-column-capable window with a 2-column layout, you couldn't move a card out of the tall column into the short one (or reliably into a new column). Columns were only as tall as their content (
align-items: flex-start), so the empty space beneath a short column wasn't part of any column and rejected drops.Root cause (reproduced)
A drop-target probe at 1940px with one card in column 1 and six in column 2:
Points below column 1's content hit
-1(no column). Card can't be dropped there.Fix
.dashboard { align-items: stretch }— every column now spans the full dashboard height, so its entire width is a valid drop target. After the fix the same probe returnscol 0at every Y (no dead zones); heights[566,566,566].At rest there's no visual change (stretched columns are invisible — no background/border; cards still stack at the top).
Verification
Headless browser at 1940px:
Ships as 1.3.4. On merge the auto-release publishes
1.3.4/1.3/1/latest.🤖 Generated with Claude Code
Generated by Claude Code