Skip to content

Commit 6313ac4

Browse files
committed
fix padding
1 parent f594624 commit 6313ac4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

app/[locale]/dashboard/layout.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ interface DashboardLayoutProps {
1212
export default function Layout({ children }: DashboardLayoutProps) {
1313
return (
1414
<div className="flex h-full grow flex-col">
15-
<header className="relative z-2 p-6 lg:px-10 lg:py-6 bg-primaryBlue">
16-
<MainNav />
17-
</header>
18-
<>{children}</>
19-
<footer>
20-
<MainFooter />
21-
</footer>
22-
</div>
15+
<header className="relative z-2 bg-primaryBlue ">
16+
<MainNav />
17+
</header>
18+
<>{children}</>
19+
<footer>
20+
<MainFooter />
21+
</footer>
22+
</div>
2323
);
2424
}

0 commit comments

Comments
 (0)