Skip to content

Commit

Permalink
improve navbar responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharqiewicz committed Aug 28, 2024
1 parent 27f794b commit 4af9056
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Links = () => (
href={link.href}
target={link.href.startsWith('https') ? '_blank' : ''}
rel={link.href.startsWith('https') ? 'noreferrer' : ''}
className="px-4 text-xl font-thin text-white md:text-md lg:px-7 hover:text-amber-500 hover:underline"
className="px-3 text-lg font-thin text-white lg:px-4 lg:text-xl lg:px-7 hover:text-amber-500 hover:underline"
>
{link.title}
</a>
Expand Down
4 changes: 3 additions & 1 deletion src/components/buttons/ConnectWallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export const ConnectWallet = () => (
type="button"
className="text-white bg-pink-600 border-pink-600 btn rounded-3xl"
>
Connect Wallet
<p className="flex">
Connect <span className="hidden lg:block lg:ml-1">Wallet</span>
</p>
<PlayCircleIcon className="w-5" />
</button>
);
Expand Down

0 comments on commit 4af9056

Please sign in to comment.