enhance(sidebar): make mobile org selector sticky

Make org selector sticky on mobile sidebar

  Move OrgSelector outside the scrollable container so it stays fixed
  at the top while menu items scroll, matching the desktop sidebar
  behavior introduced in 9b2c0d0b.
This commit is contained in:
Laurence
2026-02-26 15:45:41 +00:00
parent 52937a6d90
commit 81c1a1da9c

View File

@@ -69,14 +69,14 @@ export function LayoutMobileMenu({
<SheetDescription className="sr-only">
{t("navbarDescription")}
</SheetDescription>
<div className="px-1 shrink-0">
<OrgSelector
orgId={orgId}
orgs={orgs}
/>
</div>
<div className="w-full border-b border-border" />
<div className="flex-1 overflow-y-auto relative">
<div className="px-1">
<OrgSelector
orgId={orgId}
orgs={orgs}
/>
</div>
<div className="w-full border-b border-border" />
<div className="px-3 pt-3">
{!isAdminPage &&
user.serverAdmin && (