@lvble/core 2.0.34 → 2.0.35

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/lib/lvble.js CHANGED
@@ -102,14 +102,14 @@ let eventListenerOpenAdded = false;
102
102
  const createModal = () => {
103
103
  const modalIframe = document.createElement("iframe");
104
104
  const w = 360;
105
- const h = 95;
105
+ const h = 85;
106
106
  const t = `calc(50vh + 10px)`;
107
107
  const l = `50vw`;
108
108
  modalIframe.style.position = "absolute";
109
109
  modalIframe.style.top = t;
110
110
  modalIframe.style.left = l;
111
111
  modalIframe.style.transform = `translate(-50%, -50%)`;
112
- modalIframe.style.width = `min(85vw, ${w}px)`;
112
+ modalIframe.style.width = `min(95vw, ${w}px)`;
113
113
  modalIframe.style.height = `min(${h}vh, 750px)`;
114
114
  modalIframe.style.backgroundColor = "white";
115
115
  modalIframe.style.borderRadius = "10px";
@@ -99,14 +99,14 @@ let eventListenerOpenAdded = false;
99
99
  const createModal = () => {
100
100
  const modalIframe = document.createElement("iframe");
101
101
  const w = 360;
102
- const h = 95;
102
+ const h = 85;
103
103
  const t = `calc(50vh + 10px)`;
104
104
  const l = `50vw`;
105
105
  modalIframe.style.position = "absolute";
106
106
  modalIframe.style.top = t;
107
107
  modalIframe.style.left = l;
108
108
  modalIframe.style.transform = `translate(-50%, -50%)`;
109
- modalIframe.style.width = `min(85vw, ${w}px)`;
109
+ modalIframe.style.width = `min(95vw, ${w}px)`;
110
110
  modalIframe.style.height = `min(${h}vh, 750px)`;
111
111
  modalIframe.style.backgroundColor = "white";
112
112
  modalIframe.style.borderRadius = "10px";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lvble/core",
3
3
  "private": false,
4
- "version": "2.0.34",
4
+ "version": "2.0.35",
5
5
  "main": "./dist/_bundles/index.js",
6
6
  "module": "./dist/lib-esm/index.js",
7
7
  "types": "./dist/lib/index.d.ts",