Skip to content

Commit

Permalink
feat: wallet balance typography adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
chambaz committed Sep 27, 2024
1 parent e40ba1d commit 18102d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/mrgn-ui/src/components/wallet-v2/wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const Wallet = ({
<TabsContent value="tokens">
{walletTokenState === WalletState.DEFAULT && (
<div className="py-8">
<div className="flex flex-col items-center justify-center gap-2">
<div className="flex flex-col items-center justify-center gap-1.5">
<h2 className="text-4xl font-medium">{walletData.balanceUSD}</h2>
<p className="flex items-center gap-1 text-muted-foreground text-sm">
Available to deposit
Expand All @@ -298,10 +298,10 @@ const Wallet = ({
</Tooltip>
</TooltipProvider>
</p>
<p className="flex items-center gap-2 text-muted-foreground text-sm">
<p className="flex items-center gap-1.5 text-muted-foreground text-sm">
Portfolio balance
<span className="flex items-center gap-1 text-primary">
{usdFormatter.format(accountSummary.balance)}{" "}
<strong className="font-medium">{usdFormatter.format(accountSummary.balance)}</strong>{" "}
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
Expand Down

0 comments on commit 18102d4

Please sign in to comment.