fix: sidebar mobile responsive and footer link clickability

This commit is contained in:
zetaloop
2026-02-20 20:36:27 +08:00
parent ebdf56a361
commit ed3858cff3
10 changed files with 86 additions and 86 deletions
+3 -1
View File
@@ -6,7 +6,9 @@ export default function AccountLayout({ children }: { children: React.ReactNode
<div className="flex min-h-screen flex-col">
<Header />
<div className="flex flex-1">
<AccountSidebar />
<div className="hidden md:block">
<AccountSidebar />
</div>
<main className="flex-1 p-6">{children}</main>
</div>
</div>