Compare commits

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ const HeroSplitDualMedia = ({
<div <div
key={index} key={index}
className={cls( 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 mediaItemClassName
)} )}
> >

View File

@@ -84,7 +84,7 @@ const ProductCardItem = memo(({
}: ProductCardItemProps) => { }: ProductCardItemProps) => {
return ( return (
<article <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} onClick={product.onProductClick}
role="article" role="article"
aria-label={`${product.brand} ${product.name} - ${product.price}`} aria-label={`${product.brand} ${product.name} - ${product.price}`}