Skip to content

Commit

Permalink
fix: fix position of Loading... text
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkyselak committed Dec 30, 2023
1 parent 118d1dc commit 481d436
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/WalletPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ export function WalletPage() {
}

if (isLoading) {
return <div className="w-96 mx-auto mt-6">Loading ...</div>;
return (
<main className="max-w-xs ml-auto mr-auto">
<div className="py-2 text-sm">Loading ...</div>
</main>
);
}
return (
<main className="max-w-xs ml-auto mr-auto">
Expand Down

0 comments on commit 481d436

Please sign in to comment.