Skip to content

Commit

Permalink
fix spacing (#26)
Browse files Browse the repository at this point in the history
Co-authored-by: jagnani73 <[email protected]>
  • Loading branch information
gane5h and jagnani73 authored Dec 5, 2023
1 parent db62c55 commit 264a0b9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const NFTWalletCollectionView: React.FC<
Some: (result) => {
const body = result.map((items, i) => {
return (
<div key={i}>
<div className="" key={i}>
<div className="mb-2">
<TypographyH3>
<div className="flex items-center gap-x-2">
Expand All @@ -56,7 +56,7 @@ export const NFTWalletCollectionView: React.FC<
</TypographyH3>
</div>

<div className="flex flex-wrap gap-8">
<div className="flex flex-wrap gap-4">
{items.nft_data.map((it, j) => {
return (
<Card
Expand Down Expand Up @@ -174,7 +174,7 @@ export const NFTWalletCollectionView: React.FC<
</div>
</div>
</div>
<div>{body}</div>
<div className="flex flex-col gap-8">{body}</div>
</div>
);
},
Expand Down

0 comments on commit 264a0b9

Please sign in to comment.