Skip to content

Commit d00de53

Browse files
committed
more style changes
1 parent 0aaed76 commit d00de53

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/app/(default_layout)/dashboard/page.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { Separator } from '@/components/ui/separator';
55

66
export default async function Dashboard() {
77
return (
8-
<div className="text-white flex flex-col gap-y-4">
8+
<div className="text-white flex flex-col gap-y-4 h-full">
99
<div className="flex w-full justify-between">
1010
<h1 className="text-xl md:text-4xl font-satoshi font-semibold">
11-
Welcome back!
11+
Overview
1212
</h1>
1313
<div className="flex item-center gap-x-3">
1414
<LanguageSwitcher />
@@ -19,7 +19,9 @@ export default async function Dashboard() {
1919
{/** userData?.userLevel === 'ADMIN' && <AdminButton /> */}
2020
</div>
2121
<Separator className="bg-black-50" />
22-
<DashboardBentoGrid />
22+
<div className=" h-full">
23+
<DashboardBentoGrid />
24+
</div>
2325
</div>
2426
);
2527
}

src/app/(default_layout)/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export default function Layout({
2929

3030
{/* Scrollable content */}
3131
<AppSidebar />
32-
<main className="w-full pr-6 py-6 lg:pt-6 lg:pb-3 lg:ml-break-out pl-break-out">
33-
<div className="lg:pl-6 h-full">
32+
<main className="w-full pr-6 py-6 lg:pt-8 lg:pb-3">
33+
<div className="lg:pl-4 h-full">
3434
{/* <SidebarTrigger className="size-4 h-full flex items-center my-auto -top-2.5 relative" /> */}
3535
{children}
3636
</div>

0 commit comments

Comments
 (0)