Skip to content

Commit

Permalink
Now showing usd instead of eth for easier understanding
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Sep 30, 2024
1 parent 9639462 commit de065bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const Header = () => {

return (
<div className="flex lg:sticky top-0 navbar bg-base-100 min-h-0 flex-shrink-0 justify-between z-20 px-0 sm:px-2">
<div className="navbar-start ml-2">
<div ref={menuRef} className="flex lg:hidden ml-2 items-center justify-center">
<div className="navbar-start ml-2" ref={menuRef}>
<div className="flex lg:hidden ml-2 items-center justify-center">
<Cog6ToothIcon onClick={toggleSettingsMenu} className="cursor-pointer h-6 w-6" />
{/* <Cog6ToothIcon className="h-6 w-6" /> */}
{isSettingsMenuOpen && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const RainbowKitCustomConnectButton = () => {
return (
<>
<div className="flex flex-col items-center mr-1">
<Balance address={account.address as Address} className="min-h-0 h-auto" />
<Balance address={account.address as Address} usdMode={true} className="min-h-0 h-auto" />
<span className="text-xs" style={{ color: networkColor }}>
{chain.name}
</span>
Expand Down

0 comments on commit de065bf

Please sign in to comment.