Merge pull request #511 from mathuo/448-drop-target-selection-transformation-scales-borders-and-outlines

feat: dnd overlay fix
This commit is contained in:
mathuo 2024-02-16 22:50:53 +00:00 committed by GitHub
commit bb40c45a29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -333,7 +333,7 @@ export class Droptarget extends CompositeDisposable {
} else if (topClass) {
box.height = `${100 * size}%`;
} else if (bottomClass) {
box.top = `${100 * size}%`;
box.top = `${100 * (1 - size)}%`;
box.height = `${100 * size}%`;
}