Fix mobile header layout and space selector dropdown alignment#921
Conversation
|
Claude finished @ved015's task in 1m 5s —— View job Review Complete
Summary: Clean CSS-only changes for mobile responsiveness. No bugs, security issues, or breaking changes found. The negative margin fix in Score: 10/10 — Good to ship. |
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-mcp | 7bb2fe4 | May 10 2026, 07:28 AM |
There was a problem hiding this comment.
Overview: Fixes mobile header layout by making the logo's negative margin desktop-only and adjusts the space selector dropdown alignment/sizing for compact (mobile) mode.
Issues found: None — this looks good to ship.
The changes are focused and minimal:
header.tsx: Moving-ml-2tomd:-ml-2preserves desktop layout while fixing mobile spacingspace-selector.tsx: The conditional props based oncompactare well-structured, and sincecompactdefaults tofalse, existing behavior is preserved for non-compact usage
Score: 10/10
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | 7bb2fe4 | Commit Preview URL Branch Preview URL |
May 10 2026, 07:29 AM |
Description
This PR fixes mobile responsiveness issues while preserving desktop layout:
Mobile-only fixes
md:-ml-2) so the Supermemory logo no longer sticks to the left edge of the screen on small devices. Desktop layout unchanged.align="end"withalignOffset={-16}for mobile. This positions the "My Spaces" menu on the right side and keeps it fully visible within the viewport when opened from the mobile header. Desktop continues using left alignment.Before
After