kupos-ui-components-lib 10.4.30 → 10.4.31
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/ui/OfferBanner.js +1 -1
- package/package.json +1 -1
- package/src/ui/OfferBanner.tsx +1 -1
package/dist/ui/OfferBanner.js
CHANGED
|
@@ -84,7 +84,7 @@ const OfferBanner = ({ offerGradient, isSoldOut, serviceItem, isLoggedIn, showLo
|
|
|
84
84
|
}
|
|
85
85
|
return null;
|
|
86
86
|
};
|
|
87
|
-
return (React.createElement("div", { className: `text-white w-full absolute ${coachKey ? "-bottom-[32px]" : isExpand ? "-bottom-[32px]" : "-bottom-[
|
|
87
|
+
return (React.createElement("div", { className: `text-white w-full absolute ${coachKey ? "-bottom-[32px]" : isExpand ? "-bottom-[32px]" : "-bottom-[40px]"} rounded-b-[14px] text-[14px] h-[58px] flex items-end pb-[7px]`, style: {
|
|
88
88
|
background: (isNewUiEnabled && (serviceItem === null || serviceItem === void 0 ? void 0 : serviceItem.ui_type) === 2) ||
|
|
89
89
|
((serviceItem === null || serviceItem === void 0 ? void 0 : serviceItem.is_dp_enabled) && (serviceItem === null || serviceItem === void 0 ? void 0 : serviceItem.dp_discount_percents))
|
|
90
90
|
? offerGradient
|
package/package.json
CHANGED
package/src/ui/OfferBanner.tsx
CHANGED
|
@@ -288,7 +288,7 @@ const OfferBanner: React.FC<OfferBannerProps> = ({
|
|
|
288
288
|
|
|
289
289
|
return (
|
|
290
290
|
<div
|
|
291
|
-
className={`text-white w-full absolute ${coachKey ? "-bottom-[32px]" : isExpand ? "-bottom-[32px]" : "-bottom-[
|
|
291
|
+
className={`text-white w-full absolute ${coachKey ? "-bottom-[32px]" : isExpand ? "-bottom-[32px]" : "-bottom-[40px]"} rounded-b-[14px] text-[14px] h-[58px] flex items-end pb-[7px]`}
|
|
292
292
|
style={{
|
|
293
293
|
background:
|
|
294
294
|
(isNewUiEnabled && serviceItem?.ui_type === 2) ||
|