Skip to content

Commit c53a98a

Browse files
committed
Remove mobile margin from header
1 parent e93cffa commit c53a98a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/ui/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { useIsMobile } from '../../hooks'
44
import { Separator } from './separator'
55

66
const Header: FC<PropsWithChildren> = ({ children }) => (
7-
<header className="mt-12 md:mt-0 sticky md:static z-50 top-0">
8-
<nav className="md:h-16 px-3 md:px-6 py-2.5 bg-background border-b border-border shadow-sm flex items-center">
7+
<header className="mt-0 sticky md:static z-50 top-0">
8+
<nav className="md:h-16 px-3 md:px-6 py-3 bg-background border-b border-border shadow-sm flex items-center">
99
<div className="w-full max-w-[96rem] mx-auto flex">{children}</div>
1010
</nav>
1111
</header>

0 commit comments

Comments
 (0)