-
Notifications
You must be signed in to change notification settings - Fork 182
Remove padding and borders from mobile panes #170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
dbbfe07
Remove mobile padding, borders and radius from panes
ctate dc6c487
Remove extra padding around code and sandbox content
ctate b01ac77
Add x padding and bottom padding remove link button from sandbox toolbar
ctate 111274a
Fix spacing between code and tab bar; hide overflow in scrollable chat
ctate 36217bd
Remove card wrapper from chat pane on desktop
ctate File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The height calculation for the diff viewer appears to be incorrect. The file path bar is approximately 44px tall (pt-3: 12px + button: 24px + pb-2: 8px), but the diff viewer uses
h-[calc(100%-41px)], which would cause it to overflow its container by 3px.View Details
Analysis
Incorrect height calculation in mobile diff viewer causes 3px overflow
What fails: The diff viewer in TaskDetails mobile layout uses
h-[calc(100%-41px)]but the file path bar above it is 44px tall (pt-3: 12px + button h-6: 24px + pb-2: 8px), causing the diff viewer to overflow its container by 3px and clip content withoverflow-hidden.How to reproduce:
Result: The diff viewer height calculation is 3px too small, causing content to overflow and be hidden by the
overflow-hiddenCSS property. When parent container is 1000px:Expected: The diff viewer should use
h-[calc(100%-44px)]to properly account for the exact height of the file path bar, ensuring all content is visible without clipping.Reference: This is a layout sizing bug in the mobile code view section of components/task-details.tsx where the calc() expression wasn't adjusted correctly when the layout was refactored.