Skip to content

Commit

Permalink
fix balance fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
muddlebee committed Nov 19, 2024
1 parent a29ca9f commit 6fce59e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ export default function Component() {
<span className="text-lg font-semibold text-white">Pay</span>
<div className="flex items-center gap-2">
<span className="text-sm text-slate-400">Balance: </span>
<span className="text-sm font-medium text-white">1,234.56 {inputToken.name}</span>
<span className="text-sm font-medium text-slate-300">1,234.56 {inputToken.name}</span>
</div>
</div>

Expand Down Expand Up @@ -451,7 +451,7 @@ export default function Component() {
<span className="text-lg font-semibold text-white">Receive</span>
<div className="flex items-center gap-2">
<span className="text-sm text-slate-400">Balance: </span>
<span className="text-sm font-medium text-white">5,678.90 {outputToken.name}</span>
<span className="text-sm font-medium text-slate-300">5,678.90 {outputToken.name}</span>
</div>
</div>
<div className="flex items-center gap-4">
Expand Down

0 comments on commit 6fce59e

Please sign in to comment.