@orion-studios/payload-studio 0.6.0-beta.109 → 0.6.0-beta.110
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.
|
@@ -2407,6 +2407,9 @@ function GrapesPageEditor({
|
|
|
2407
2407
|
}
|
|
2408
2408
|
editor.setDevice(device);
|
|
2409
2409
|
setSelectedDevice(device);
|
|
2410
|
+
window.requestAnimationFrame(() => {
|
|
2411
|
+
editor.refresh();
|
|
2412
|
+
});
|
|
2410
2413
|
};
|
|
2411
2414
|
const syncStylePanelInput = (event) => {
|
|
2412
2415
|
const target = event.target;
|
|
@@ -2283,6 +2283,9 @@ function GrapesPageEditor({
|
|
|
2283
2283
|
}
|
|
2284
2284
|
editor.setDevice(device);
|
|
2285
2285
|
setSelectedDevice(device);
|
|
2286
|
+
window.requestAnimationFrame(() => {
|
|
2287
|
+
editor.refresh();
|
|
2288
|
+
});
|
|
2286
2289
|
};
|
|
2287
2290
|
const syncStylePanelInput = (event) => {
|
|
2288
2291
|
const target = event.target;
|
|
@@ -532,8 +532,16 @@
|
|
|
532
532
|
box-shadow: 0 0 0 2px var(--builder-v2-selection-soft);
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
.orion-builder-v2-editor .gjs-cv-canvas__frames
|
|
536
|
-
|
|
535
|
+
.orion-builder-v2-editor .gjs-cv-canvas__frames {
|
|
536
|
+
height: 100% !important;
|
|
537
|
+
width: 100% !important;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.orion-builder-v2-editor .gjs-frame-wrapper {
|
|
541
|
+
height: 100% !important;
|
|
542
|
+
max-width: 100%;
|
|
543
|
+
}
|
|
544
|
+
|
|
537
545
|
.orion-builder-v2-editor .gjs-frame {
|
|
538
546
|
height: 100% !important;
|
|
539
547
|
width: 100% !important;
|
package/package.json
CHANGED