We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ae242 commit 397be8dCopy full SHA for 397be8d
apps/contract-verification/src/app/components/NavMenu.tsx
@@ -9,7 +9,7 @@ interface NavItemProps {
9
10
const NavItem: React.FC<NavItemProps> = ({ to, icon, title }) => {
11
return (
12
- <NavLink to={to} className={({ isActive }) => 'text-decoration-none d-flex flex-column justify-content-center p-2 small ' + (isActive ? 'bg-light' : 'bg-transparent')}>
+ <NavLink to={to} className={({ isActive }) => 'text-decoration-none d-flex flex-column justify-content-center py-2 px-1 small ' + (isActive ? 'bg-light' : 'bg-transparent')}>
13
<span>
14
<span>{icon}</span>
15
<span className="ml-2">{title}</span>
0 commit comments