feat: division between mobile and desktop components, boards for mobile
This commit is contained in:
@ -13,7 +13,7 @@ import {
|
||||
SortableContext,
|
||||
} from "@dnd-kit/sortable";
|
||||
import { Group, ScrollArea } from "@mantine/core";
|
||||
import CreateStatusButton from "@/app/deals/components/CreateStatusButton/CreateStatusButton";
|
||||
import CreateStatusButton from "@/app/deals/components/shared/CreateStatusButton/CreateStatusButton";
|
||||
import useDndSensors from "@/app/deals/hooks/useSensors";
|
||||
import FunnelColumn from "@/components/dnd/FunnelDnd/FunnelColumn";
|
||||
import FunnelOverlay from "@/components/dnd/FunnelDnd/FunnelOverlay";
|
||||
|
||||
@ -23,7 +23,7 @@ const DragHandle = ({ id, children, style, disabled }: Props) => {
|
||||
style={{
|
||||
width: "100wv",
|
||||
cursor: disabled ? "default" : "grab",
|
||||
touchAction: "none",
|
||||
touchAction: disabled ? "auto" : "none",
|
||||
...style,
|
||||
}}
|
||||
ref={setNodeRef}>
|
||||
|
||||
Reference in New Issue
Block a user