Skip to content

Commit

Permalink
Opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
carletex committed Jan 7, 2025
1 parent 27c9bd3 commit 5c57ca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const Home: NextPage = () => {
</div>
</div>

<div className="flex flex-col gap-2">
<div className={`flex flex-col gap-2 ${!hasWalletInstalled ? "opacity-50" : ""}`}>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold">2. Connect your wallet</h2>
{(isConnected || isUserRegistered) && <CheckCircleIcon className="text-green-500 h-5 w-5" />}
Expand All @@ -101,7 +101,7 @@ const Home: NextPage = () => {
</div>
</div>

<div className="flex flex-col gap-2">
<div className={`flex flex-col gap-2 ${!isConnected ? "opacity-50" : ""}`}>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold">3. Sign your first message</h2>
{isUserRegistered && <CheckCircleIcon className="text-green-500 h-5 w-5" />}
Expand Down

0 comments on commit 5c57ca8

Please sign in to comment.