@hanzo/commerce 7.1.12 → 7.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -43,9 +43,9 @@ const CartLineItem: React.FC<{
|
|
|
43
43
|
return (
|
|
44
44
|
<div
|
|
45
45
|
className={cn(
|
|
46
|
-
'flex flex-col justify-start items-start text-sm font-sans',
|
|
47
|
-
selected ? 'border-foreground
|
|
48
|
-
(itemClicked && !selected ? 'cursor-pointer hover
|
|
46
|
+
'flex flex-col justify-start items-start text-sm font-sans border border-transparent p-[4px]',
|
|
47
|
+
selected ? 'border-foreground rounded-sm' : '',
|
|
48
|
+
(itemClicked && !selected ? 'cursor-pointer hover:!border-muted-2' : 'cursor-default '),
|
|
49
49
|
className
|
|
50
50
|
)}
|
|
51
51
|
onClick={() => {itemClicked && itemClicked(item)}}
|