Make actions animation rotate counterclockwisely (#29378)

Because the icon is:

![image](https://github.com/go-gitea/gitea/assets/2114189/be7e78ab-bc64-46d9-8259-fd7f0037471a)

So it must rotate counterclockwisely

(cherry picked from commit ea164aba4b697aa08e4d20d896a8f318c09a6523)
This commit is contained in:
wxiaoguang 2024-02-25 21:37:35 +08:00 committed by Earl Warren
parent 753f9711e9
commit 630d3f929e
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -760,7 +760,7 @@ export function initRepositoryActionView() {
@keyframes job-status-rotate-keyframes {
100% {
transform: rotate(360deg);
transform: rotate(-360deg);
}
}