We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80f6665 commit bee6134Copy full SHA for bee6134
1 file changed
src/components/dashboard/DashboardLayout.tsx
@@ -4,11 +4,11 @@ import { DashboardHeader } from './DashboardHeader';
4
5
export const DashboardLayout = () => {
6
return (
7
- <div className="min-h-screen flex bg-neutral-950 flex-col md:flex-row font-sans">
+ <div className="absolute inset-0 w-full h-full flex bg-neutral-950 flex-col md:flex-row font-sans">
8
<DashboardSidebar />
9
- <div className="flex-1 flex flex-col min-w-0">
+ <div className="flex-1 flex flex-col min-w-0 overflow-hidden">
10
<DashboardHeader />
11
- <main className="flex-1 overflow-y-auto p-4 md:p-8 shrink-0">
+ <main className="flex-1 overflow-y-auto p-4 md:p-8 shrink-0 relative">
12
<Outlet />
13
</main>
14
</div>
0 commit comments