Add spacing between wallet viewer icon buttons (#156)

* style: increase spacing between wallet header icon buttons

Changed gap-2 to gap-3 for better visual separation between the info,
refresh, and disconnect icon buttons in the wallet viewer header.

* style: remove "Waiting for payment..." text from receive dialog

The QR code overlay spinner already indicates payment checking status.

---------

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Alejandro
2026-01-19 16:25:26 +01:00
committed by GitHub
parent 2ce81f3ad8
commit 5475f9b518

View File

@@ -993,7 +993,7 @@ export default function WalletViewer() {
</div>
{/* Right: Info Dropdown, Refresh, Disconnect */}
<div className="flex items-center gap-2">
<div className="flex items-center gap-3">
{walletInfo && (
<DropdownMenu>
<DropdownMenuTrigger asChild>
@@ -1633,7 +1633,6 @@ export default function WalletViewer() {
<DialogTitle>Receive Payment</DialogTitle>
<DialogDescription>
Generate a Lightning invoice to receive sats.
{checkingPayment && " Waiting for payment..."}
</DialogDescription>
</DialogHeader>