diff --git a/src/components/AppShelf/AppShelfItem.tsx b/src/components/AppShelf/AppShelfItem.tsx index 31bc16349..b3a7c15fa 100644 --- a/src/components/AppShelf/AppShelfItem.tsx +++ b/src/components/AppShelf/AppShelfItem.tsx @@ -15,6 +15,9 @@ const useStyles = createStyles((theme) => ({ boxShadow: `${theme.shadows.md} !important`, transform: 'scale(1.05)', }, + [theme.fn.smallerThan('sm')]: { + WebkitUserSelect: 'none', + }, }, })); @@ -38,7 +41,7 @@ export function SortableAppShelfItem(props: any) { export function AppShelfItem(props: any) { const { service }: { service: serviceItem } = props; const [hovering, setHovering] = useState(false); - const { classes, theme } = useStyles(); + const { classes } = useStyles(); return (