From 0fe7474c2bae4942a7406215da3a8c306011cb5a Mon Sep 17 00:00:00 2001 From: Ophir Date: Sat, 18 Jul 2026 13:37:44 +0300 Subject: [PATCH] Fix mobile drag reordering --- app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/globals.css b/app/globals.css index fb4d3cce3..88b5766e2 100644 --- a/app/globals.css +++ b/app/globals.css @@ -124,3 +124,8 @@ @apply bg-background text-foreground; } } + +/* Pointer-based drag handles must opt out of native touch scrolling. */ +.cursor-move { + touch-action: none; +}