fix: consistent header height h-14, reduce side padding px-4
Docker Build / Build and Push Docker Image (push) Successful in 4m16s

This commit is contained in:
2026-06-14 20:28:58 +08:00
parent 5464d14973
commit 719d06ecd6
@@ -140,13 +140,13 @@ export function PublicHeader() {
<header ref={headerRef} className='fixed top-0 right-0 left-0 z-50'>
<nav
className={cn(
'flex items-center justify-between border-b transition-all duration-300',
'flex h-14 items-center justify-between border-b transition-colors duration-300',
scrolled
? 'bg-background/80 border-border/80 backdrop-blur-xl'
: 'bg-background border-border h-16'
: 'bg-background border-border'
)}
>
<div className='mx-auto flex w-full max-w-6xl items-center justify-between px-6'>
<div className='mx-auto flex w-full max-w-6xl items-center justify-between px-4'>
{/* Logo */}
<Link
to={homeUrl}