From 2ab62cc96dfc30785b0f78d8e0c9c1f7dd8068a3 Mon Sep 17 00:00:00 2001
From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
Date: Mon, 17 Nov 2025 06:33:42 -0600
Subject: [PATCH] fix sidebar nav links on < 768px desktop layout
---
web/src/components/navigation/NavItem.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/src/components/navigation/NavItem.tsx b/web/src/components/navigation/NavItem.tsx
index f8ee7eb0d3..bd982f3120 100644
--- a/web/src/components/navigation/NavItem.tsx
+++ b/web/src/components/navigation/NavItem.tsx
@@ -46,13 +46,13 @@ export default function NavItem({
onClick={onClick}
className={({ isActive }) =>
cn(
- "flex flex-col items-center justify-center rounded-lg",
+ "flex flex-col items-center justify-center rounded-lg p-2",
className,
variants[item.variant ?? "primary"][isActive ? "active" : "inactive"],
)
}
>
-
+
);