Skip to content

Commit 1fda73a

Browse files
committed
update dashboard header
1 parent 372c807 commit 1fda73a

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

app/[locale]/dashboard/layout.tsx

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,13 @@ interface DashboardLayoutProps {
1212
export default function Layout({ children }: DashboardLayoutProps) {
1313
return (
1414
<div className="flex h-full grow flex-col">
15-
<header
16-
className="relative z-2 bg-surfaceDefault px-4 py-3 shadow-elementTopNav"
17-
style={{
18-
backgroundColor: 'var( --background-alpha-medium)',
19-
}}
20-
>
21-
<MainNav />
22-
</header>
23-
<>{children}</>
24-
<footer>
25-
<MainFooter />
26-
</footer>
27-
</div>
15+
<header className="relative z-2 p-6 lg:px-10 lg:py-6 shadow-elementTopNav bg-primaryBlue">
16+
<MainNav />
17+
</header>
18+
<>{children}</>
19+
<footer>
20+
<MainFooter />
21+
</footer>
22+
</div>
2823
);
2924
}

0 commit comments

Comments
 (0)