Skip to content

Commit 5e29e9c

Browse files
committedMar 18, 2025
Fix navbar
1 parent c18b1ce commit 5e29e9c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎src/providers/DocsProviders.tsx

+6-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function DocsProviders({ children, pageMap }) {
2222
<Navbar
2323
logo={<Logo />}
2424
logoLink='/'
25-
className='fixed top-0 left-0 right-0 z-50 flex items-center justify-between px-4 w-full dark:bg-neutral-900 bg-neutral-100'
25+
className='fixed top-0 left-0 right-0 z-50 flex items-center justify-between px-4 w-full dark:bg-neutral-900 bg-neutral-100 h-16'
2626
children={
2727
<div className='flex items-center justify-between gap-4'>
2828
<AskCookbook />
@@ -32,9 +32,11 @@ export default function DocsProviders({ children, pageMap }) {
3232
/>
3333
}
3434
pageMap={pageMap}>
35-
<Theme accentColor='red' grayColor='gray' scaling='100%'>
36-
{children}
37-
</Theme>
35+
<div className='pt-16'>
36+
<Theme accentColor='red' grayColor='gray' scaling='100%'>
37+
{children}
38+
</Theme>
39+
</div>
3840
</Layout>
3941
);
4042
}

0 commit comments

Comments
 (0)