@flozy/editor 9.8.1 → 9.8.2
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.
@@ -348,7 +348,8 @@ export const sortElements = (items, container) => {
|
|
348
348
|
// Compare marginTopXs
|
349
349
|
const aMarginTop = parseFloat(a.dataset.marginTopXs) || 0;
|
350
350
|
const bMarginTop = parseFloat(b.dataset.marginTopXs) || 0;
|
351
|
-
|
351
|
+
const BUFFER_DIFF = 5;
|
352
|
+
if (Math.abs(aMarginTop - bMarginTop) > BUFFER_DIFF) {
|
352
353
|
return aMarginTop - bMarginTop;
|
353
354
|
}
|
354
355
|
const aLeft = parseFloat(a.dataset.leftXs) || 0;
|