@hanzo/commerce 7.1.16 → 7.1.17
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.
|
@@ -139,7 +139,7 @@ const AddToCartWidget: React.FC<{
|
|
|
139
139
|
</Button>
|
|
140
140
|
<div className={cn(
|
|
141
141
|
'grow-0 shrink-0 flex items-center cursor-default xs:px-2',
|
|
142
|
-
priSmaller ? 'text-xs' : 'text-sm',
|
|
142
|
+
priSmaller || ghost ? 'text-xs' : 'text-sm',
|
|
143
143
|
digitClx
|
|
144
144
|
)}>
|
|
145
145
|
{item.quantity}{ghost ? '' : ' in Bag'}
|
|
@@ -46,7 +46,7 @@ const CartLineItem: React.FC<{
|
|
|
46
46
|
'flex flex-col justify-start items-start text-sm font-sans',
|
|
47
47
|
'border border-background rounded-sm p-1',
|
|
48
48
|
selected ? 'border-foreground' : '',
|
|
49
|
-
(itemClicked && !selected ? 'cursor-pointer hover:!border-muted-
|
|
49
|
+
(itemClicked && !selected ? 'cursor-pointer hover:!border-muted-3' : 'cursor-default '),
|
|
50
50
|
className
|
|
51
51
|
)}
|
|
52
52
|
onClick={() => {itemClicked && itemClicked(item)}}
|