feat(FN-707): hide project selector on mobile and add to overflow menu

- Hide ProjectSelector on mobile via hidden className and CSS media query
- Add project selector as menu item in mobile overflow menu
- Add CSS safety net (max-width: 767px) to ensure selector stays hidden
- Add comprehensive tests for mobile project selector visibility behavior
This commit is contained in:
gsxdsm
2026-04-02 13:53:00 -07:00
parent c1ff739a87
commit 96fea75510
3 changed files with 110 additions and 4 deletions

View File

@@ -4439,6 +4439,12 @@ body {
padding: 12px 12px;
}
/* Hide project selector and back button on mobile (belt-and-suspenders with conditional rendering) */
.header-project-selector,
.header-back-button {
display: none;
}
/* Mobile header: collapsible search and overflow menu */
.mobile-search-trigger {
display: flex;