Skip to content

Commit 2fa0013

Browse files
committed
Tighten desktop nav spacing
1 parent 8e7aaea commit 2fa0013

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/navigation/DesktopNavigationLinks.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface DesktopNavigationLinksProps {
88

99
export function DesktopNavigationLinks({ pathname }: DesktopNavigationLinksProps) {
1010
return (
11-
<>
11+
<div className="flex items-center gap-1">
1212
<nav className="hidden md:flex items-center gap-1">
1313
{PUBLIC_NAV_LINKS.map((link) => (
1414
<Link
@@ -27,6 +27,6 @@ export function DesktopNavigationLinks({ pathname }: DesktopNavigationLinksProps
2727
>
2828
{ABOUT_NAV_LINK.label}
2929
</Link>
30-
</>
30+
</div>
3131
);
3232
}

0 commit comments

Comments
 (0)