fix(web): vertically center settings sidebar and refine active highlight styling#474
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Desktop looks like a nice upgrade, but this breaks mobile: the PR switches the sidebar to position: fixed and content to calc(100% - 264px), without touching any media query. The existing @media (max-width: 640px) rule only resets grid columns, so on phones the fixed sidebar overlays the content and the content column shrinks to ~110px. Two changes needed: Add mobile overrides in the 640px media query: reset the sidebar to static/full-width (or a top bar) and content back to width: 100%. Please verify on an actual phone viewport (375px) before pushing. |
af23117 to
f910ad0
Compare
Description
This PR improves the web Settings screen UI and navigation layout:
top: 50%; transform: translateY(-50%)) so it stays constant and fixed while scrolling settings content.