From 057507ec4a60f0787e7d04a7ede073fb311bb78a Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 13 May 2024 15:03:13 +0200 Subject: [PATCH] transform on answer hover --- src/assets/css/components/game/GameQuestion.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/assets/css/components/game/GameQuestion.scss b/src/assets/css/components/game/GameQuestion.scss index aa38c25..fbf08a0 100644 --- a/src/assets/css/components/game/GameQuestion.scss +++ b/src/assets/css/components/game/GameQuestion.scss @@ -7,6 +7,11 @@ rounded-full flex flex-col justify-center items-center shrink-0 w-fit h-auto p-6; + transition: transform 0.4s ease-out; + + &:hover { + transform: scale(1.25); + } img { @apply h-16 w-16 block object-contain object-center;