Layout product grid

This commit is contained in:
Jonatan Schultz
2021-08-26 16:56:23 +02:00
parent 75beec4c94
commit 7f6999629a
15 changed files with 11056 additions and 142 deletions

View File

@@ -67,18 +67,13 @@ const ProductView: FC<ProductViewProps> = ({ product, relatedProducts }) => {
{relatedProducts.map((p) => (
<div
key={p.path}
className="animated fadeIn bg-accent-0 border border-accent-2"
className="animated fadeIn"
>
<ProductCard
noNameTag
product={p}
key={p.path}
variant="simple"
className="animated fadeIn"
imgProps={{
width: 300,
height: 300,
}}
/>
</div>
))}