I have a list of NFTs that are being pulled in like this:
listedNfts.map((nft, index) => (
<div className="p-6 w-6/12">
<Card title={`${ethers.utils.formatEther(nft.attributes.price)} ETH`}>
<div>
<Illustration height="180px" logo="lazyNft" width="100%" />
</div>
</Card>
</div>
))
And they look like so:
However, they donβt go to the next row when more are added. Am I missing something? Is there something I should be doing different to make it so?
EDIT: Iβm using tailwind to get the original formatting.