fix: Fixed mobile scroll bar

This commit is contained in:
2026-09-07 08:02:09 +00:00
parent 049e005873
commit f9ef9c4929
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -316,7 +316,7 @@ export function SidebarContent({ onNavigate }: { onNavigate?: () => void }) {
/** The permanent sidebar. Below lg the drawer takes over. */
export function Sidebar() {
return (
<aside className="hidden h-screen w-60 shrink-0 flex-col border-r border-border bg-surface lg:flex">
<aside className="hidden h-full w-60 shrink-0 flex-col border-r border-border bg-surface lg:flex">
<SidebarContent />
</aside>
);