diff --git a/packages/twenty-front/src/modules/favorites/components/Favorites.tsx b/packages/twenty-front/src/modules/favorites/components/Favorites.tsx index bda4a5db6..cd6ee5d8b 100644 --- a/packages/twenty-front/src/modules/favorites/components/Favorites.tsx +++ b/packages/twenty-front/src/modules/favorites/components/Favorites.tsx @@ -13,6 +13,22 @@ const StyledContainer = styled(NavigationDrawerSection)` width: 100%; `; +const StyledAvatar = styled(Avatar)` + :hover { + cursor: grab; + } +`; + +const StyledNavigationDrawerItem = styled(NavigationDrawerItem)` + :active { + cursor: grabbing; + + .fav-avatar:hover { + cursor: grabbing; + } + } +`; + export const Favorites = () => { const { favorites, handleReorderFavorite } = useFavorites(); @@ -41,15 +57,16 @@ export const Favorites = () => { draggableId={id} index={index} itemComponent={ - ( - )} to={link}