Compare commits

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ const HeroSplitDualMedia = ({
<div
key={index}
className={cls(
"w-full h-100 md:h-[55vh] overflow-hidden rounded-theme-capped card p-3",
"w-full h-100 md:h-[55vh] overflow-hidden rounded-full card p-3",
mediaItemClassName
)}
>

View File

@@ -84,7 +84,7 @@ const ProductCardItem = memo(({
}: ProductCardItemProps) => {
return (
<article
className={cls("card group relative h-full flex flex-col gap-4 cursor-pointer p-4 rounded-theme-capped", cardClassName)}
className={cls("card group relative h-full flex flex-col gap-4 cursor-pointer p-4 rounded-full", cardClassName)}
onClick={product.onProductClick}
role="article"
aria-label={`${product.brand} ${product.name} - ${product.price}`}