style(desktop): match PendingInviteGate to startup interstitials#2097
Merged
Conversation
morgmart
added a commit
that referenced
this pull request
Jul 18, 2026
Contributor
Author
The pending-invite gate carried buzz-onboarding-neutral-theme but not buzz-startup-shell, so it skipped the shared chartreuse→light-blue gradient + dot-grid background and rendered on flat white — visibly out of place against the sibling startup screens it sits alongside. Add buzz-startup-shell and the data-system-color-scheme hook to the root (keeping fixed inset-0 z-50, since this overlays MachineOnboardingFlow), add StartupWindowDragRegion, and align the inner layout and button stack widths with RecoveryScreen / KeyringLockedScreen. Styling only — copy, handlers, and test ids are unchanged. Co-Authored-By: Claude <noreply@anthropic.com>
morgmart
force-pushed
the
style-opening-community-page
branch
from
July 18, 2026 23:16
b651ef6 to
a624126
Compare
wesbillman
approved these changes
Jul 18, 2026
tlongwell-block
pushed a commit
that referenced
this pull request
Jul 19, 2026
Signed-off-by: Tyler Longwell <tlongwell@block.xyz> Co-authored-by: Tyler Longwell <tlongwell@block.xyz> * origin/main: test(desktop): fix Escape-before-mount race in channel browser e2e (#2101) style(desktop): match PendingInviteGate to startup interstitials (#2097) Remove additional agents gallery (#2098) fix(agents): stop the reply loop and the premature kickoff closer (#2094) chore(release): release Buzz Desktop version 0.4.18 (#2091) fix(desktop): recover first community joins (#2087) fix(chart): support CPU-only relay autoscaling (#2086) feat(chart): add relay horizontal autoscaling (#2077)
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.


Why
PendingInviteGate— the "Opening community link" screen shown when a community deep link arrives before machine onboarding finishes — carriedbuzz-onboarding-neutral-themebut notbuzz-startup-shell. That combination is whatcomponents.csskeys the shared chartreuse→light-blue gradient + dot-grid background off of, so the gate rendered on flat white and looked out of place against the startup screens it sits alongside.What
Aligns the gate with its siblings (
RecoveryScreen.tsx,KeyringLockedScreen.tsx):buzz-startup-shellalongsidebuzz-onboarding-neutral-theme, keepingfixed inset-0 z-50(this is an overlay aboveMachineOnboardingFlow).data-system-color-schemevia theuseSystemColorScheme()hook, matchingRecoveryScreen.<StartupWindowDragRegion />as the first child.relative … max-w-[500px], button stackmax-w-[300px].Copy, both handlers, the
FlappingBeelogo,variant="ghost"on Cancel, and all threedata-testids (pending-invite-gate,pending-invite-continue,pending-invite-cancel) are unchanged. Design-systemButtonvariants only.The title keeps its
mt-6— the sibling screens have no logo, so their titles sit flush; here it needs to clear theFlappingBee.Styling only — no functional change.
Testing
desktop/tests/e2e/deep-link-invite.spec.ts— 7/7 passing (it asserts against this screen).biome check,tsc --noEmit,pnpm check:px-text— clean.Note: the pre-push
testgate flaked once onbuzz-agent'scancelled_turn_with_usage_emits_notification_before_responseunder full parallel load. It passes 3/3 in isolation and 3/3 as a full suite, and this diff touches one.tsxfile — unrelated, pre-existing. The retried push was fully green.