From cd56f706e8a164001d98c6022ec2808094663a1a Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 17 Nov 2025 07:30:02 -0600 Subject: [PATCH] match exact pixels --- web/src/components/navigation/NavItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/navigation/NavItem.tsx b/web/src/components/navigation/NavItem.tsx index bd982f312..204e7a9dd 100644 --- a/web/src/components/navigation/NavItem.tsx +++ b/web/src/components/navigation/NavItem.tsx @@ -46,7 +46,7 @@ export default function NavItem({ onClick={onClick} className={({ isActive }) => cn( - "flex flex-col items-center justify-center rounded-lg p-2", + "flex flex-col items-center justify-center rounded-lg p-[6px]", className, variants[item.variant ?? "primary"][isActive ? "active" : "inactive"], )