🐛 Fix animation overflow (#1269)

This commit is contained in:
Manuel
2023-08-12 22:00:06 +02:00
committed by GitHub
parent c8f39033dd
commit be3b4f2275

View File

@@ -63,8 +63,8 @@ export const AppTile = ({ className, app }: AppTileProps) => {
className={cx(classes.appImage, 'dashboard-tile-app-image')} className={cx(classes.appImage, 'dashboard-tile-app-image')}
src={app.appearance.iconUrl} src={app.appearance.iconUrl}
alt={app.name} alt={app.name}
whileHover={{ scale: 1 }} whileHover={{ scale: 0.9 }}
initial={{ scale: 0.9 }} initial={{ scale: 0.8 }}
style={{ style={{
width: isRow ? 0 : undefined, width: isRow ? 0 : undefined,
}} }}