Skip to content

Commit 1a96237

Browse files
abdoutclaude
andcommitted
fix: remove extra px from PageNav
Remove container-wrapper and container classes from nav to align with PageHeader. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 49fae94 commit 1a96237

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/root/page-nav.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export function PageNav({
66
...props
77
}: React.ComponentProps<"div">) {
88
return (
9-
<div className={cn("container-wrapper scroll-mt-24", className)} {...props}>
10-
<div className="container flex items-center justify-between gap-4 py-4">
9+
<div className={cn("scroll-mt-24", className)} {...props}>
10+
<div className="flex items-center justify-between gap-4 py-4">
1111
{children}
1212
</div>
1313
</div>

0 commit comments

Comments
 (0)