fix: remove max-width cap on dashboard for ultrawide screens#843
Open
fix: remove max-width cap on dashboard for ultrawide screens#843
Conversation
The dashboard-wrapper had max-width: 1800px with margin: 0 auto, causing large gaps on both sides of ultrawide displays.
- Remove overflow-y: auto from left and right content columns - Make bento sections and workspace grid flexible/shrinkable - Right sidebar shrinks from 420px down to 200px on smaller screens - Workspace cards use min() to shrink below 260px when needed - Running services grid no longer scrolls independently - Responsive breakpoints keep two-column layout longer
…ping Apply proper CSS flex/grid shrinking chain so all dashboard sections resize proportionally to fit the screen: - Use flex: 1 1 0% (not flex: 1) so flex-basis starts at 0 - Add min-height: 0 at every nesting level to allow shrinking - Use grid-auto-rows: minmax(0, 1fr) so grid rows shrink - Remove overflow: hidden from structural containers (only on leaf cards) - Make bento sections, workspace grid, and port cards all shrinkable
… screens Revert the overcomplicated flex/grid shrinking approach. Instead: - Restore original layout styles that work well at full size - Use CSS zoom to scale down the entire dashboard on smaller screens - 85% at <=1200px, 75% at <=900px, 60% at <=600px - No clipping, no hidden content, everything just gets smaller
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
.dashboard-wrapperhadmax-width: 1800pxwithmargin: 0 auto, causing large empty gaps on both sides on ultrawide displaysTest plan
🤖 Generated with Claude Code