From c8d2edd42919d7b7ac2115fe08ce590f55aec977 Mon Sep 17 00:00:00 2001 From: spencrmartin Date: Fri, 7 Nov 2025 08:15:35 -0500 Subject: [PATCH] fix(ui): remove top padding from navigation grid - Remove pt-0.5 from inner motion.div container - Grid now sits flush at top with 0px padding - Maintains pb-0.5 for bottom spacing --- ui/desktop/src/components/Layout/TopNavigation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/components/Layout/TopNavigation.tsx b/ui/desktop/src/components/Layout/TopNavigation.tsx index 8b794466a0..e8c9f76911 100644 --- a/ui/desktop/src/components/Layout/TopNavigation.tsx +++ b/ui/desktop/src/components/Layout/TopNavigation.tsx @@ -464,7 +464,7 @@ export const TopNavigation: React.FC = ({ isExpanded, setIsE stiffness: 400, damping: 25, }} - className="pb-0.5 pt-0.5 overflow-y-auto lg:max-h-[2000px] md:max-h-[calc(100vh-60px)] max-h-screen" + className="pb-0.5 overflow-y-auto lg:max-h-[2000px] md:max-h-[calc(100vh-60px)] max-h-screen" >
{navItems.map((item, index) => {