Fix lightbox Escape navigating away, sidebar profile hidden at large font

This commit is contained in:
Jure
2026-03-24 15:14:12 +01:00
parent 6b77765e1c
commit 9a09e464b5
3 changed files with 11 additions and 4 deletions
+6 -2
View File
@@ -120,8 +120,12 @@ export function Sidebar() {
})}
</nav>
{/* Account switcher (full) — expanded only */}
{!c && <AccountSwitcher />}
{/* Account switcher (full) — expanded only, always visible at bottom */}
{!c && (
<div className="shrink-0">
<AccountSwitcher />
</div>
)}
</aside>
);