feat: pointer cursor for boards and deals

This commit is contained in:
2025-08-05 16:52:26 +04:00
parent 236c0dcf10
commit c13cc4a0a5
4 changed files with 13 additions and 5 deletions

View File

@ -4,7 +4,6 @@ import DealCard from "@/app/deals/components/DealCard/DealCard";
import { DealSchema } from "@/client";
import { SortableItem } from "@/components/SortableDnd/SortableItem";
type Props = {
deal: DealSchema;
};
@ -14,7 +13,11 @@ const DealContainer: FC<Props> = ({ deal }) => {
return (
<Box>
<SortableItem id={deal.id}>{dealBody}</SortableItem>
<SortableItem
dragHandleStyle={{ cursor: "pointer" }}
id={deal.id}>
{dealBody}
</SortableItem>
</Box>
);
};