From 3229acdd4b8785783a80b02b7cc8b92dc69e2453 Mon Sep 17 00:00:00 2001 From: Sasha Usoskin Date: Sat, 9 May 2026 13:53:31 +0300 Subject: [PATCH] Fixed missing animation for the vote icon --- .../src/routes/participant/voting_views/VotingViews.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/routes/participant/voting_views/VotingViews.css b/frontend/src/routes/participant/voting_views/VotingViews.css index bc14b67..ad81fdd 100644 --- a/frontend/src/routes/participant/voting_views/VotingViews.css +++ b/frontend/src/routes/participant/voting_views/VotingViews.css @@ -65,15 +65,14 @@ } .FPTPCandidate .voteIcon { - scale: 0; transition: 500ms; - transform: rotate(180deg); + transform: rotate(180deg) scale(0,0); filter: opacity(0); } .selectedCandidate .voteIcon { - scale: 1; - transform: rotate(0); + scale: 100%; + transform: rotate(0) scale(1,1); filter: opacity(50%); }