Skip to content

Commit 55603c4

Browse files
committed
fix: don't cancel drag by hiding card
1 parent 4a45f83 commit 55603c4

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

client/styles/projects-board.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,14 @@
225225
}
226226

227227
.projects-board-card.drag-hidden {
228-
display: none;
228+
position: fixed;
229+
left: -10000px;
230+
top: -10000px;
231+
width: 1px;
232+
height: 1px;
233+
overflow: hidden;
234+
opacity: 0;
235+
pointer-events: none;
229236
}
230237

231238
.projects-board-drop-placeholder {

0 commit comments

Comments
 (0)