fix(thread): reduce excessive whitespace between root message and replies#302
Merged
Just-Insane merged 3 commits intodevfrom Mar 16, 2026
Merged
fix(thread): reduce excessive whitespace between root message and replies#302Just-Insane merged 3 commits intodevfrom
Just-Insane merged 3 commits intodevfrom
Conversation
The thread drawer had padding: S600 0 (24px top+bottom) on both the root message box and the reply messages box, plus S200 padding on the reply count label. This stacked up to ~84px of empty space between the root message and the first reply, especially noticeable in newly created threads. Fix: - Root message box: change bottom padding S600→S200 (top kept at S400) - Reply messages box: remove top padding (reply count label already provides visual separation) Fixes #294
…ow content-sized root message
Contributor
Deploying with
|
| Status | Preview URL | Commit | Alias | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! | https://pr-302-sable.raspy-dream-bb1d.workers.dev | 1124ba1 | pr-302 |
Mon, 16 Mar 2026 19:37:28 GMT |
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
Fixes #294 — There was approximately 84px of dead whitespace between the thread root message and the first reply in the thread drawer.
Root cause
padding: S600 0(addingS600≈ 32px at bottom)padding: S600 0(addingS600≈ 32px at top)S200spacingFix
padding: S600 0→padding: S400 0 S200 0(reduced bottom padding; the label provides visual separation)padding: S600 0→padding: 0 0 S600 0(removed top padding; label + root message bottom padding is sufficient)Net result: ~84px of dead space reduced to ~32px.