Skip to content

Commit

Permalink
fix wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
hzrd149 committed Oct 10, 2023
1 parent f701942 commit 0f66704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/inline-cashu-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function InlineCachuCard({ token }: { token: string }) {

const amount = cashu?.token[0].proofs.reduce((acc, v) => acc + v.amount, 0);
return (
<Card p="4" flexDirection="row" borderColor="green.500" alignItems="center" gap="4">
<Card p="4" flexDirection="row" borderColor="green.500" alignItems="center" gap="4" flexWrap="wrap">
<ECashIcon boxSize={10} color="green.500" />
<Box>
<Heading size="md">{amount} Cashu sats</Heading>
Expand Down

0 comments on commit 0f66704

Please sign in to comment.