diff --git a/apps/minifront/src/components/header/navbar.tsx b/apps/minifront/src/components/header/navbar.tsx index a5330998d3..f7195e3123 100644 --- a/apps/minifront/src/components/header/navbar.tsx +++ b/apps/minifront/src/components/header/navbar.tsx @@ -14,9 +14,9 @@ export const Navbar = () => { key={link.href} to={link.href} className={cn( - 'font-bold py-[10px] select-none', + 'font-bold py-[10px] px-[30px] select-none rounded-lg', (link.href === pathname || link.subLinks?.includes(pathname)) && - 'bg-button-gradient-secondary px-[30px] rounded-lg', + 'bg-button-gradient-secondary', )} > {link.label} @@ -24,7 +24,7 @@ export const Navbar = () => { ) : (