From be3b4f22759669b61abf1209b1386d0bf56ef303 Mon Sep 17 00:00:00 2001 From: Manuel <30572287+manuel-rw@users.noreply.github.com> Date: Sat, 12 Aug 2023 22:00:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20animation=20overflow=20(#1?= =?UTF-8?q?269)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dashboard/Tiles/Apps/AppTile.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Dashboard/Tiles/Apps/AppTile.tsx b/src/components/Dashboard/Tiles/Apps/AppTile.tsx index a633ca0ee..b28a922a7 100644 --- a/src/components/Dashboard/Tiles/Apps/AppTile.tsx +++ b/src/components/Dashboard/Tiles/Apps/AppTile.tsx @@ -63,8 +63,8 @@ export const AppTile = ({ className, app }: AppTileProps) => { className={cx(classes.appImage, 'dashboard-tile-app-image')} src={app.appearance.iconUrl} alt={app.name} - whileHover={{ scale: 1 }} - initial={{ scale: 0.9 }} + whileHover={{ scale: 0.9 }} + initial={{ scale: 0.8 }} style={{ width: isRow ? 0 : undefined, }}