diff --git a/src/components/drag/SortableTile.js b/src/components/drag/SortableTile.js index c2acff5..af86a86 100644 --- a/src/components/drag/SortableTile.js +++ b/src/components/drag/SortableTile.js @@ -43,11 +43,10 @@ function Sortable({ id, children }) { borderWidth: "4px", borderRadius: "4px", borderStyle: over?.id === `__group__${id}` ? "solid" : "none", - pointerEvents: "none", }; return ( - + {children} - + sx={{ + width: "100%", + height: 0, + paddingTop: "100%", + pointerEvents: "none", + position: "absolute", + top: 0, + }} + > + + + ); }