diy-template-components 2.0.81 → 2.0.82
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/build/index.es.js +4 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +4 -0
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -1683,6 +1683,10 @@ function MobileHeader({
|
|
|
1683
1683
|
if (!header?.effectivePrice) {
|
|
1684
1684
|
return null;
|
|
1685
1685
|
}
|
|
1686
|
+
const body = document?.body;
|
|
1687
|
+
if (body) {
|
|
1688
|
+
body.style.marginBottom = '130px';
|
|
1689
|
+
}
|
|
1686
1690
|
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
|
1687
1691
|
className: classes.BottomSheetContainer
|
|
1688
1692
|
}, OfferDetailsJSX(), /*#__PURE__*/React.createElement("div", {
|