0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-11-01 15:48:38 +01:00

Fix circular spin animation direction

Signed-off-by: 鲁汀 <131967983+lutinglt@users.noreply.github.com>
This commit is contained in:
鲁汀 2025-10-30 10:49:07 +08:00 committed by GitHub
parent 3ab8ae5807
commit d3d349f169
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}
}