Skip to content

Commit

Permalink
enabled bridge nav item
Browse files Browse the repository at this point in the history
  • Loading branch information
salil-naik committed May 28, 2021
1 parent aec76fe commit da20881
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/components/ConnectWallet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ const useStyles = makeStyles((theme) => ({
marginRight: 5,
height: "24px !important",
width: "24px !important",
border: '2px solid',

"&.green":{
borderColor: 'green',
Expand All @@ -245,6 +244,7 @@ const useStyles = makeStyles((theme) => ({
height: "36px !important",
width: "36px !important",
borderRadius: "20px",
border: '2px solid',
},
},
logout: {
Expand Down
10 changes: 6 additions & 4 deletions client/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,18 @@ const Navbar = ({
className={classes.menuItemContainer}
ref={menuItemContainerRef}
>
{/* <a href="https://polygon-nft-bridge.netlify.app/" className="menuItem">
<BridgeIcon className="menuItemIcon active" />
Bridge
</a> */}
<Link href="/">
<a className={router.pathname == "/" ? "menuItem active" : "menuItem"}>
<MintIcon className="menuItemIcon" />
Minter
</a>
</Link>
<Link href="https://bridge.mintnft.today/">
<a className="menuItem">
<BridgeIcon className="menuItemIcon active" />
Bridge
</a>
</Link>
<Link href="/account">
<a className={router.pathname == "/account" ? "menuItem active" : "menuItem"}>
<AccountCircleIcon className="menuItemIcon" />
Expand Down

0 comments on commit da20881

Please sign in to comment.