From d3d349f16955b0680d4ddf2c4514d2c225dc2134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B2=81=E6=B1=80?= <131967983+lutinglt@users.noreply.github.com> Date: Thu, 30 Oct 2025 10:49:07 +0800 Subject: [PATCH] Fix circular spin animation direction MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 鲁汀 <131967983+lutinglt@users.noreply.github.com> --- web_src/css/modules/animations.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/css/modules/animations.css b/web_src/css/modules/animations.css index deaaf83680..18998fe509 100644 --- a/web_src/css/modules/animations.css +++ b/web_src/css/modules/animations.css @@ -124,6 +124,6 @@ Ideally in the future we should use a better image for clockwise animation. */ @keyframes circular-spin-keyframes { 100% { - transform: rotate(-360deg); + transform: rotate(360deg); } }