@pelcro/react-pelcro-js 4.0.0-alpha.77 → 4.0.0-alpha.78
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/dist/index.cjs.js +59 -6
- package/dist/index.esm.js +59 -6
- package/dist/pelcro.css +5 -9
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -28596,7 +28596,7 @@ function SubscriptionCreateModal({
|
|
|
28596
28596
|
}, showBackButton && /*#__PURE__*/React__default['default'].createElement("button", {
|
|
28597
28597
|
type: "button",
|
|
28598
28598
|
onClick: goBack,
|
|
28599
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
28599
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
28600
28600
|
}, /*#__PURE__*/React__default['default'].createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
28601
28601
|
className: "plc-text-xl plc-font-bold"
|
|
28602
28602
|
}, (_product$paywall$subs = product === null || product === void 0 ? void 0 : (_product$paywall = product.paywall) === null || _product$paywall === void 0 ? void 0 : _product$paywall.subscribe_title) !== null && _product$paywall$subs !== void 0 ? _product$paywall$subs : (_window$Pelcro$paywal = window.Pelcro.paywall.read()) === null || _window$Pelcro$paywal === void 0 ? void 0 : _window$Pelcro$paywal.subscribe_title), " ", /*#__PURE__*/React__default['default'].createElement("p", {
|
|
@@ -30667,7 +30667,7 @@ const AddressCreateModal = ({
|
|
|
30667
30667
|
}, showBackButton && /*#__PURE__*/React__default['default'].createElement("button", {
|
|
30668
30668
|
type: "button",
|
|
30669
30669
|
onClick: goBack,
|
|
30670
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
30670
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
30671
30671
|
}, /*#__PURE__*/React__default['default'].createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
30672
30672
|
className: "plc-text-xl plc-font-bold"
|
|
30673
30673
|
}, giftRecipient ? t("titleGifting") : t("title")))), /*#__PURE__*/React__default['default'].createElement(ModalBody, null, /*#__PURE__*/React__default['default'].createElement(AddressCreateView, Object.assign({}, otherProps, {
|
|
@@ -30699,6 +30699,35 @@ const BillingAddressCreateModal = ({
|
|
|
30699
30699
|
|
|
30700
30700
|
(_otherProps$onSuccess = otherProps.onSuccess) === null || _otherProps$onSuccess === void 0 ? void 0 : _otherProps$onSuccess.call(otherProps, newAddressId);
|
|
30701
30701
|
|
|
30702
|
+
switch (flow) {
|
|
30703
|
+
case "createPaymentSource":
|
|
30704
|
+
switchView("payment-method-create");
|
|
30705
|
+
break;
|
|
30706
|
+
|
|
30707
|
+
case "deletePaymentSource":
|
|
30708
|
+
switchView("payment-method-delete");
|
|
30709
|
+
break;
|
|
30710
|
+
|
|
30711
|
+
default:
|
|
30712
|
+
switchToCheckoutForm();
|
|
30713
|
+
break;
|
|
30714
|
+
}
|
|
30715
|
+
};
|
|
30716
|
+
|
|
30717
|
+
const userHasBillingAddress = () => {
|
|
30718
|
+
var _window$Pelcro$user$r, _window$Pelcro$user$r2;
|
|
30719
|
+
|
|
30720
|
+
const billingAddresses = (_window$Pelcro$user$r = (_window$Pelcro$user$r2 = window.Pelcro.user.read()) === null || _window$Pelcro$user$r2 === void 0 ? void 0 : _window$Pelcro$user$r2.addresses.filter(address => address.type == "billing")) !== null && _window$Pelcro$user$r !== void 0 ? _window$Pelcro$user$r : [];
|
|
30721
|
+
return billingAddresses.length > 0;
|
|
30722
|
+
};
|
|
30723
|
+
|
|
30724
|
+
const isUserHasBillingAddress = userHasBillingAddress();
|
|
30725
|
+
|
|
30726
|
+
const goBack = () => {
|
|
30727
|
+
if (isUserHasBillingAddress) {
|
|
30728
|
+
return switchView("billing-address-select");
|
|
30729
|
+
}
|
|
30730
|
+
|
|
30702
30731
|
switch (flow) {
|
|
30703
30732
|
case "createPaymentSource":
|
|
30704
30733
|
switchView("payment-method-create");
|
|
@@ -30729,7 +30758,11 @@ const BillingAddressCreateModal = ({
|
|
|
30729
30758
|
onClose: onClose
|
|
30730
30759
|
}, /*#__PURE__*/React__default['default'].createElement(ModalHeader, null, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
30731
30760
|
className: "plc-text-left plc-text-gray-900 pelcro-title-wrapper plc-flex-1 plc-flex plc-flex-col plc-justify-center"
|
|
30732
|
-
}, /*#__PURE__*/React__default['default'].createElement("
|
|
30761
|
+
}, /*#__PURE__*/React__default['default'].createElement("button", {
|
|
30762
|
+
type: "button",
|
|
30763
|
+
onClick: goBack,
|
|
30764
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
30765
|
+
}, /*#__PURE__*/React__default['default'].createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
30733
30766
|
className: "plc-text-xl plc-font-bold"
|
|
30734
30767
|
}, t("titleBilling")))), /*#__PURE__*/React__default['default'].createElement(ModalBody, null, /*#__PURE__*/React__default['default'].createElement(AddressCreateView, Object.assign({}, otherProps, {
|
|
30735
30768
|
type: "billing",
|
|
@@ -34111,7 +34144,7 @@ const AddressSelectModal = ({
|
|
|
34111
34144
|
}, showBackButton && /*#__PURE__*/React__default['default'].createElement("button", {
|
|
34112
34145
|
type: "button",
|
|
34113
34146
|
onClick: goBack,
|
|
34114
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
34147
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
34115
34148
|
}, /*#__PURE__*/React__default['default'].createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
34116
34149
|
className: "plc-text-xl plc-font-bold"
|
|
34117
34150
|
}, t("selectAddressTitle")), /*#__PURE__*/React__default['default'].createElement("p", {
|
|
@@ -34162,6 +34195,22 @@ const BillingAddressSelectModal = ({
|
|
|
34162
34195
|
}
|
|
34163
34196
|
};
|
|
34164
34197
|
|
|
34198
|
+
const goBack = () => {
|
|
34199
|
+
switch (flow) {
|
|
34200
|
+
case "createPaymentSource":
|
|
34201
|
+
switchView("payment-method-create");
|
|
34202
|
+
break;
|
|
34203
|
+
|
|
34204
|
+
case "deletePaymentSource":
|
|
34205
|
+
switchView("payment-method-delete");
|
|
34206
|
+
break;
|
|
34207
|
+
|
|
34208
|
+
default:
|
|
34209
|
+
switchToCheckoutForm();
|
|
34210
|
+
break;
|
|
34211
|
+
}
|
|
34212
|
+
};
|
|
34213
|
+
|
|
34165
34214
|
const onAddNewAddress = () => {
|
|
34166
34215
|
switchView("billing-address-create");
|
|
34167
34216
|
}; // const onGiftRedemptionSuccess = () => {
|
|
@@ -34181,7 +34230,11 @@ const BillingAddressSelectModal = ({
|
|
|
34181
34230
|
id: "pelcro-address-select-modal"
|
|
34182
34231
|
}, /*#__PURE__*/React__default['default'].createElement(ModalHeader, null, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
34183
34232
|
className: "plc-text-left plc-text-gray-900 pelcro-title-wrapper plc-flex-1 plc-flex plc-flex-col plc-justify-center"
|
|
34184
|
-
}, /*#__PURE__*/React__default['default'].createElement("
|
|
34233
|
+
}, /*#__PURE__*/React__default['default'].createElement("button", {
|
|
34234
|
+
type: "button",
|
|
34235
|
+
onClick: goBack,
|
|
34236
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
34237
|
+
}, /*#__PURE__*/React__default['default'].createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
34185
34238
|
className: "plc-text-xl plc-font-bold"
|
|
34186
34239
|
}, t("selectAddressTitle")), /*#__PURE__*/React__default['default'].createElement("p", {
|
|
34187
34240
|
className: "plc-text-sm"
|
|
@@ -34496,7 +34549,7 @@ const PaymentMethodSelectModal = ({
|
|
|
34496
34549
|
}, showBackButton && /*#__PURE__*/React__default['default'].createElement("button", {
|
|
34497
34550
|
type: "button",
|
|
34498
34551
|
onClick: goBack,
|
|
34499
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
34552
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
34500
34553
|
}, /*#__PURE__*/React__default['default'].createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
34501
34554
|
className: "plc-text-xl plc-font-bold"
|
|
34502
34555
|
}, t("select.title")), /*#__PURE__*/React__default['default'].createElement("p", {
|
package/dist/index.esm.js
CHANGED
|
@@ -28566,7 +28566,7 @@ function SubscriptionCreateModal({
|
|
|
28566
28566
|
}, showBackButton && /*#__PURE__*/React__default.createElement("button", {
|
|
28567
28567
|
type: "button",
|
|
28568
28568
|
onClick: goBack,
|
|
28569
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
28569
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
28570
28570
|
}, /*#__PURE__*/React__default.createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default.createElement("h4", {
|
|
28571
28571
|
className: "plc-text-xl plc-font-bold"
|
|
28572
28572
|
}, (_product$paywall$subs = product === null || product === void 0 ? void 0 : (_product$paywall = product.paywall) === null || _product$paywall === void 0 ? void 0 : _product$paywall.subscribe_title) !== null && _product$paywall$subs !== void 0 ? _product$paywall$subs : (_window$Pelcro$paywal = window.Pelcro.paywall.read()) === null || _window$Pelcro$paywal === void 0 ? void 0 : _window$Pelcro$paywal.subscribe_title), " ", /*#__PURE__*/React__default.createElement("p", {
|
|
@@ -30637,7 +30637,7 @@ const AddressCreateModal = ({
|
|
|
30637
30637
|
}, showBackButton && /*#__PURE__*/React__default.createElement("button", {
|
|
30638
30638
|
type: "button",
|
|
30639
30639
|
onClick: goBack,
|
|
30640
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
30640
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
30641
30641
|
}, /*#__PURE__*/React__default.createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default.createElement("h4", {
|
|
30642
30642
|
className: "plc-text-xl plc-font-bold"
|
|
30643
30643
|
}, giftRecipient ? t("titleGifting") : t("title")))), /*#__PURE__*/React__default.createElement(ModalBody, null, /*#__PURE__*/React__default.createElement(AddressCreateView, Object.assign({}, otherProps, {
|
|
@@ -30669,6 +30669,35 @@ const BillingAddressCreateModal = ({
|
|
|
30669
30669
|
|
|
30670
30670
|
(_otherProps$onSuccess = otherProps.onSuccess) === null || _otherProps$onSuccess === void 0 ? void 0 : _otherProps$onSuccess.call(otherProps, newAddressId);
|
|
30671
30671
|
|
|
30672
|
+
switch (flow) {
|
|
30673
|
+
case "createPaymentSource":
|
|
30674
|
+
switchView("payment-method-create");
|
|
30675
|
+
break;
|
|
30676
|
+
|
|
30677
|
+
case "deletePaymentSource":
|
|
30678
|
+
switchView("payment-method-delete");
|
|
30679
|
+
break;
|
|
30680
|
+
|
|
30681
|
+
default:
|
|
30682
|
+
switchToCheckoutForm();
|
|
30683
|
+
break;
|
|
30684
|
+
}
|
|
30685
|
+
};
|
|
30686
|
+
|
|
30687
|
+
const userHasBillingAddress = () => {
|
|
30688
|
+
var _window$Pelcro$user$r, _window$Pelcro$user$r2;
|
|
30689
|
+
|
|
30690
|
+
const billingAddresses = (_window$Pelcro$user$r = (_window$Pelcro$user$r2 = window.Pelcro.user.read()) === null || _window$Pelcro$user$r2 === void 0 ? void 0 : _window$Pelcro$user$r2.addresses.filter(address => address.type == "billing")) !== null && _window$Pelcro$user$r !== void 0 ? _window$Pelcro$user$r : [];
|
|
30691
|
+
return billingAddresses.length > 0;
|
|
30692
|
+
};
|
|
30693
|
+
|
|
30694
|
+
const isUserHasBillingAddress = userHasBillingAddress();
|
|
30695
|
+
|
|
30696
|
+
const goBack = () => {
|
|
30697
|
+
if (isUserHasBillingAddress) {
|
|
30698
|
+
return switchView("billing-address-select");
|
|
30699
|
+
}
|
|
30700
|
+
|
|
30672
30701
|
switch (flow) {
|
|
30673
30702
|
case "createPaymentSource":
|
|
30674
30703
|
switchView("payment-method-create");
|
|
@@ -30699,7 +30728,11 @@ const BillingAddressCreateModal = ({
|
|
|
30699
30728
|
onClose: onClose
|
|
30700
30729
|
}, /*#__PURE__*/React__default.createElement(ModalHeader, null, /*#__PURE__*/React__default.createElement("div", {
|
|
30701
30730
|
className: "plc-text-left plc-text-gray-900 pelcro-title-wrapper plc-flex-1 plc-flex plc-flex-col plc-justify-center"
|
|
30702
|
-
}, /*#__PURE__*/React__default.createElement("
|
|
30731
|
+
}, /*#__PURE__*/React__default.createElement("button", {
|
|
30732
|
+
type: "button",
|
|
30733
|
+
onClick: goBack,
|
|
30734
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
30735
|
+
}, /*#__PURE__*/React__default.createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default.createElement("h4", {
|
|
30703
30736
|
className: "plc-text-xl plc-font-bold"
|
|
30704
30737
|
}, t("titleBilling")))), /*#__PURE__*/React__default.createElement(ModalBody, null, /*#__PURE__*/React__default.createElement(AddressCreateView, Object.assign({}, otherProps, {
|
|
30705
30738
|
type: "billing",
|
|
@@ -34081,7 +34114,7 @@ const AddressSelectModal = ({
|
|
|
34081
34114
|
}, showBackButton && /*#__PURE__*/React__default.createElement("button", {
|
|
34082
34115
|
type: "button",
|
|
34083
34116
|
onClick: goBack,
|
|
34084
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
34117
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
34085
34118
|
}, /*#__PURE__*/React__default.createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default.createElement("h4", {
|
|
34086
34119
|
className: "plc-text-xl plc-font-bold"
|
|
34087
34120
|
}, t("selectAddressTitle")), /*#__PURE__*/React__default.createElement("p", {
|
|
@@ -34132,6 +34165,22 @@ const BillingAddressSelectModal = ({
|
|
|
34132
34165
|
}
|
|
34133
34166
|
};
|
|
34134
34167
|
|
|
34168
|
+
const goBack = () => {
|
|
34169
|
+
switch (flow) {
|
|
34170
|
+
case "createPaymentSource":
|
|
34171
|
+
switchView("payment-method-create");
|
|
34172
|
+
break;
|
|
34173
|
+
|
|
34174
|
+
case "deletePaymentSource":
|
|
34175
|
+
switchView("payment-method-delete");
|
|
34176
|
+
break;
|
|
34177
|
+
|
|
34178
|
+
default:
|
|
34179
|
+
switchToCheckoutForm();
|
|
34180
|
+
break;
|
|
34181
|
+
}
|
|
34182
|
+
};
|
|
34183
|
+
|
|
34135
34184
|
const onAddNewAddress = () => {
|
|
34136
34185
|
switchView("billing-address-create");
|
|
34137
34186
|
}; // const onGiftRedemptionSuccess = () => {
|
|
@@ -34151,7 +34200,11 @@ const BillingAddressSelectModal = ({
|
|
|
34151
34200
|
id: "pelcro-address-select-modal"
|
|
34152
34201
|
}, /*#__PURE__*/React__default.createElement(ModalHeader, null, /*#__PURE__*/React__default.createElement("div", {
|
|
34153
34202
|
className: "plc-text-left plc-text-gray-900 pelcro-title-wrapper plc-flex-1 plc-flex plc-flex-col plc-justify-center"
|
|
34154
|
-
}, /*#__PURE__*/React__default.createElement("
|
|
34203
|
+
}, /*#__PURE__*/React__default.createElement("button", {
|
|
34204
|
+
type: "button",
|
|
34205
|
+
onClick: goBack,
|
|
34206
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
34207
|
+
}, /*#__PURE__*/React__default.createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default.createElement("h4", {
|
|
34155
34208
|
className: "plc-text-xl plc-font-bold"
|
|
34156
34209
|
}, t("selectAddressTitle")), /*#__PURE__*/React__default.createElement("p", {
|
|
34157
34210
|
className: "plc-text-sm"
|
|
@@ -34466,7 +34519,7 @@ const PaymentMethodSelectModal = ({
|
|
|
34466
34519
|
}, showBackButton && /*#__PURE__*/React__default.createElement("button", {
|
|
34467
34520
|
type: "button",
|
|
34468
34521
|
onClick: goBack,
|
|
34469
|
-
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-
|
|
34522
|
+
className: "plc-absolute plc-w-6 plc-text-gray-500 focus:plc-text-black plc-z-max plc-top-1/2 plc-left-6 plc-transform plc--translate-y-1/2 plc-border-0 hover:plc-text-black hover:plc-shadow-none plc-bg-transparent hover:plc-bg-transparent focus:plc-bg-transparent"
|
|
34470
34523
|
}, /*#__PURE__*/React__default.createElement(SvgArrowLeft, null)), /*#__PURE__*/React__default.createElement("h4", {
|
|
34471
34524
|
className: "plc-text-xl plc-font-bold"
|
|
34472
34525
|
}, t("select.title")), /*#__PURE__*/React__default.createElement("p", {
|
package/dist/pelcro.css
CHANGED
|
@@ -744,7 +744,7 @@ Add the correct display in Chrome and Safari.
|
|
|
744
744
|
.pelcro-root .pelcro-modal{
|
|
745
745
|
position: absolute;
|
|
746
746
|
display: flex;
|
|
747
|
-
max-width:
|
|
747
|
+
max-width: 36rem;
|
|
748
748
|
flex-direction: column;
|
|
749
749
|
align-items: center;
|
|
750
750
|
border-radius: 0.5rem;
|
|
@@ -768,8 +768,8 @@ Add the correct display in Chrome and Safari.
|
|
|
768
768
|
border-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) + 10%));
|
|
769
769
|
--tw-bg-opacity: 1;
|
|
770
770
|
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
771
|
-
padding-left:
|
|
772
|
-
padding-right:
|
|
771
|
+
padding-left: 3.5rem;
|
|
772
|
+
padding-right: 3.5rem;
|
|
773
773
|
padding-top: 0.75rem;
|
|
774
774
|
padding-bottom: 0.75rem;
|
|
775
775
|
border-bottom-width: 1.5px;
|
|
@@ -832,8 +832,8 @@ Add the correct display in Chrome and Safari.
|
|
|
832
832
|
|
|
833
833
|
@media (min-width: 768px){
|
|
834
834
|
.pelcro-root .pelcro-modal-body{
|
|
835
|
-
padding-left:
|
|
836
|
-
padding-right:
|
|
835
|
+
padding-left: 3.5rem;
|
|
836
|
+
padding-right: 3.5rem;
|
|
837
837
|
}
|
|
838
838
|
}
|
|
839
839
|
|
|
@@ -2116,10 +2116,6 @@ apple-pay-button {
|
|
|
2116
2116
|
left: 0px;
|
|
2117
2117
|
}
|
|
2118
2118
|
|
|
2119
|
-
.pelcro-root .plc-left-2{
|
|
2120
|
-
left: 0.5rem;
|
|
2121
|
-
}
|
|
2122
|
-
|
|
2123
2119
|
.pelcro-root .plc-left-4{
|
|
2124
2120
|
left: 1rem;
|
|
2125
2121
|
}
|