Add animations to the AppShelf

This commit is contained in:
ajnart
2022-05-18 22:51:12 +02:00
parent c8e1295a4b
commit dc5ee3bdf3

View File

@@ -36,6 +36,11 @@ export function AppShelfItem(props: any) {
const { classes, theme } = useStyles();
return (
<motion.div
animate={{
scale: [0.9, 1.06, 1],
rotate: [0, 5, 0],
}}
transition={{ duration: 0.6, ease: 'easeInOut' }}
key={service.name}
onHoverStart={() => {
setHovering(true);