1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Fix drag and drop indicator positioning when not using desktop preview

This commit is contained in:
Andrew Kingston 2021-10-06 13:59:25 +01:00
parent 2a736c16d7
commit 67543ef9be

View file

@ -17,7 +17,17 @@
if (!bounds || !side) {
return null
}
const { left, top, width, height } = bounds
// Get preview offset
const root = document.getElementById("clip-root")
const rootBounds = root.getBoundingClientRect()
// Subtract preview offset from bounds
let { left, top, width, height } = bounds
left -= rootBounds.left
top -= rootBounds.top
// Determine position
if (side === Sides.Top || side === Sides.Bottom) {
return {
top: side === Sides.Top ? top - 4 : top + height,