Skip to content

Commit a2c1ee3

Browse files
committed
Pr fix
1 parent 748497e commit a2c1ee3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/dashboard/layout.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ export default function RootLayout({
1414
return (
1515
<main className="min-h-screen max-w-7xl mx-auto px-3">
1616
<DashboardNavbar />
17-
<div className="w-full dark:bg-neutral-900 md:p-6 p-3 bg-neutral-200 md:rounded-xl rounded-sm">
18-
{children}
17+
<div className="md:hidden block fixed top-1 left-1 w-full z-50">
18+
<MobileSidear/>
1919
</div>
20+
<div className="w-full dark:bg-neutral-900 bg-neutral-200 md:rounded-xl rounded-sm">{children}</div>
2021
</main>
2122
);
2223
}

0 commit comments

Comments
 (0)