@betterstore/react 0.3.55 → 0.3.56
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/dist/index.cjs.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -567,6 +567,7 @@ const IframeWrapper = ({ children, iframeRef, wrapperRef, }) => {
|
|
|
567
567
|
width: "100%",
|
|
568
568
|
height: "100%",
|
|
569
569
|
border: "none",
|
|
570
|
+
minHeight: "100vh",
|
|
570
571
|
}, sandbox: "allow-same-origin allow-scripts allow-forms allow-popups allow-popups-to-escape-sandbox allow-top-navigation" }),
|
|
571
572
|
iframeBody && ReactDOM.createPortal(children, iframeBody)));
|
|
572
573
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -544,6 +544,7 @@ const IframeWrapper = ({ children, iframeRef, wrapperRef, }) => {
|
|
|
544
544
|
width: "100%",
|
|
545
545
|
height: "100%",
|
|
546
546
|
border: "none",
|
|
547
|
+
minHeight: "100vh",
|
|
547
548
|
}, sandbox: "allow-same-origin allow-scripts allow-forms allow-popups allow-popups-to-escape-sandbox allow-top-navigation" }),
|
|
548
549
|
iframeBody && ReactDOM.createPortal(children, iframeBody)));
|
|
549
550
|
};
|