Bug fixes
This commit is contained in:
		| @@ -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> | ||||
|   ) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user