Skip to content

Commit

Permalink
feat: improve header on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
yukigesho committed Nov 14, 2024
1 parent f5a5c9c commit f2d3825
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ function ConnectWalletButton() {
) : (
<WalletIcon width={33} height={33} />
)}
{account.ensName || account.displayName}
<span className='hidden md:block'>
{account.ensName || account.displayName}
</span>
<ExpandMoreIcon height={12} width={12} />
</button>
</div>
Expand Down

0 comments on commit f2d3825

Please sign in to comment.