File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/contract-verification/src/app/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ interface NavItemProps {
9
9
10
10
const NavItem : React . FC < NavItemProps > = ( { to, icon, title } ) => {
11
11
return (
12
- < NavLink to = { to } className = { ( { isActive } ) => 'text-decoration-none d-flex flex-column justify-content-center px-2 ' + ( isActive ? 'bg-transparent ' : 'bg-dark ' ) } >
12
+ < NavLink to = { to } className = { ( { isActive } ) => 'text-decoration-none d-flex flex-column justify-content-center px-2 ' + ( isActive ? 'bg-light ' : 'bg-transparent ' ) } >
13
13
< span >
14
14
< span > { icon } </ span >
15
15
< span className = "ml-2" > { title } </ span >
@@ -25,7 +25,7 @@ export const NavMenu = () => {
25
25
< NavItem to = "/receipts" icon = { < i className = "fas fa-receipt" > </ i > } title = "Receipts" />
26
26
< NavItem to = "/lookup" icon = { < i className = "fas fa-search" > </ i > } title = "Lookup" />
27
27
< NavItem to = "/settings" icon = { < i className = "fas fa-cog" > </ i > } title = "Settings" />
28
- < div className = "flex-grow-1 bg-dark " > </ div >
28
+ < div className = "flex-grow-1" > </ div >
29
29
</ nav >
30
30
)
31
31
}
You can’t perform that action at this time.
0 commit comments