diff --git a/apps/contract-verification/src/app/components/NavMenu.tsx b/apps/contract-verification/src/app/components/NavMenu.tsx index ce01bd8514..4e1e6579ab 100644 --- a/apps/contract-verification/src/app/components/NavMenu.tsx +++ b/apps/contract-verification/src/app/components/NavMenu.tsx @@ -9,15 +9,10 @@ interface NavItemProps { const NavItem: React.FC = ({ to, icon, title }) => { return ( - 'p-2 text-decoration-none ' + (isActive ? 'bg-primary text-white' : 'bg-secondary')} - // state={from} - > - + 'text-decoration-none d-flex flex-column justify-content-center px-2 ' + (isActive ? 'bg-transparent' : 'bg-dark')}> + {icon} - {title} + {title} ) @@ -25,11 +20,12 @@ const NavItem: React.FC = ({ to, icon, title }) => { export const NavMenu = () => { return ( -