@akinon/pz-checkout-gift-pack 2.0.0-beta.5 → 2.0.0-beta.6
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.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/index.tsx +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -120,7 +120,7 @@ export const CheckoutGiftPack = ({
|
|
|
120
120
|
>
|
|
121
121
|
<textarea
|
|
122
122
|
className={clsx(
|
|
123
|
-
'w-full border border-solid p-4 placeholder:text-[0.75rem] placeholder:text-[#9c9d9d] outline-
|
|
123
|
+
'w-full border border-solid p-4 placeholder:text-[0.75rem] placeholder:text-[#9c9d9d] outline-hidden text-[0.75rem]',
|
|
124
124
|
noteLength > 160 ? 'border-[#e85150]' : 'border-[#7b9d75]'
|
|
125
125
|
)}
|
|
126
126
|
rows={4}
|
|
@@ -213,7 +213,7 @@ export const CheckoutGiftPack = ({
|
|
|
213
213
|
<span>{giftBox?.note !== DEFAULT_NOTE ? giftBox?.note : ''}</span>
|
|
214
214
|
<Button
|
|
215
215
|
appearance="ghost"
|
|
216
|
-
className="underline cursor-pointer
|
|
216
|
+
className="underline cursor-pointer shrink-0 border-0 px-0 py-0 h-auto hover:bg-transparent hover:text-[#000000]"
|
|
217
217
|
onClick={() => setIsNoteFormOpen(true)}
|
|
218
218
|
>
|
|
219
219
|
{_translations.updateNote}
|