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 372c807 commit 1fda73aCopy full SHA for 1fda73a
app/[locale]/dashboard/layout.tsx
@@ -12,18 +12,13 @@ interface DashboardLayoutProps {
12
export default function Layout({ children }: DashboardLayoutProps) {
13
return (
14
<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>
+ <header className="relative z-2 p-6 lg:px-10 lg:py-6 shadow-elementTopNav bg-primaryBlue">
+ <MainNav />
+ </header>
+ <>{children}</>
+ <footer>
+ <MainFooter />
+ </footer>
+ </div>
28
);
29
}
0 commit comments