From 754154a57c20ac12038603cf413bba0c92e28a97 Mon Sep 17 00:00:00 2001 From: Manuel Wedler Date: Wed, 18 Sep 2024 18:44:18 +0200 Subject: [PATCH] Fix NavMenu coloring --- apps/contract-verification/src/app/components/NavMenu.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/contract-verification/src/app/components/NavMenu.tsx b/apps/contract-verification/src/app/components/NavMenu.tsx index 4e1e6579ab..b8b99ab930 100644 --- a/apps/contract-verification/src/app/components/NavMenu.tsx +++ b/apps/contract-verification/src/app/components/NavMenu.tsx @@ -9,7 +9,7 @@ interface NavItemProps { const NavItem: React.FC = ({ to, icon, title }) => { return ( - 'text-decoration-none d-flex flex-column justify-content-center px-2 ' + (isActive ? 'bg-transparent' : 'bg-dark')}> + 'text-decoration-none d-flex flex-column justify-content-center px-2 ' + (isActive ? 'bg-light' : 'bg-transparent')}> {icon} {title} @@ -25,7 +25,7 @@ export const NavMenu = () => { } title="Receipts" /> } title="Lookup" /> } title="Settings" /> -
+
) }