Upon migrating to React 19.0.0 and Tailwind v4, I noticed that the DragOverlay jumps down roughly 55 pixels from the cursor, when I start dragging, and it keeps that offset. That wasn't the case before.
I can fix it with a negative marginTop, but I'd love to understand why this is happening.

<DragOverlay
adjustScale
// style={{ marginTop: "-55px" }}
>
<div className='w-full h-12 bg-indigo-800'>Overlay</div>
</DragOverlay>
Upon migrating to React 19.0.0 and Tailwind v4, I noticed that the DragOverlay jumps down roughly 55 pixels from the cursor, when I start dragging, and it keeps that offset. That wasn't the case before.
I can fix it with a negative marginTop, but I'd love to understand why this is happening.