Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐶 Rewrite header layout #45

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ export default function RootLayout({
<AxiomWebVitals />
<body
className={cn(
"flex min-h-screen flex-col items-center bg-background px-16 font-sans antialiased",
"flex min-h-screen flex-col items-center bg-background font-sans antialiased",
fontSans.variable,
)}
>
<header className="flex w-full items-center justify-between py-12">
<header className="mx-auto flex w-full max-w-[1384px] items-center justify-between gap-8 p-3">
<Button
variant="link"
className="flex items-center gap-4 p-0 text-base font-bold"
Expand Down
Loading