This commit is contained in:
Belen Curcio
2020-10-15 17:10:54 -03:00
parent e881121913
commit bbeb3e4d4b
3 changed files with 26 additions and 4 deletions

View File

@@ -48,7 +48,11 @@ const ProductCard: FC<Props> = ({ className, node: p, variant }) => {
<div className="flex flex-row justify-between box-border w-full z-10 relative">
<div className="flex flex-col flex-1 overflow-hidden">
<div className="flex-1">
<span className={s.productTitle}>{p.name}</span>
<span className={s.productTitle}>
<h2>
<strong>{p.name}</strong>
</h2>
</span>
</div>
<div className="flex-0">
<div className={s.productPrice}>${p.prices.price.value}</div>