mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
Bug fixes
This commit is contained in:
parent
0ec552c2b8
commit
364ef332c1
@ -119,7 +119,7 @@
|
||||
}
|
||||
|
||||
.wishlistButton {
|
||||
@apply w-10 h-10 flex ml-auto flex items-center justify-center bg-primary text-primary font-semibold text-xs leading-6 cursor-pointer;
|
||||
@apply w-10 h-10 flex ml-auto flex items-center justify-center bg-primary text-primary font-semibold text-xs leading-6 cursor-pointer z-10;
|
||||
}
|
||||
|
||||
.imageContainer {
|
||||
|
@ -52,7 +52,7 @@ const ProductCard: FC<Props> = ({
|
||||
}
|
||||
|
||||
return (
|
||||
<Link href={`product${p.path}`}>
|
||||
<Link href={`/product${p.path}`}>
|
||||
<a
|
||||
className={cn(s.root, { [s.simple]: variant === 'simple' }, className)}
|
||||
>
|
||||
|
@ -66,7 +66,7 @@ const WishlistButton: FC<Props> = ({
|
||||
className={cn({ 'opacity-50': loading }, className)}
|
||||
onClick={handleWishlistChange}
|
||||
>
|
||||
<Heart fill={itemInWishlist ? 'white' : 'none'} />
|
||||
<Heart fill={itemInWishlist ? 'var(--pink)' : 'none'} />
|
||||
</button>
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user