Skip to content

Commit ea164ab

Browse files
authored
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
1 parent f79c9e8 commit ea164ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/components/RepoActionView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ export function initRepositoryActionView() {
760760
761761
@keyframes job-status-rotate-keyframes {
762762
100% {
763-
transform: rotate(360deg);
763+
transform: rotate(-360deg);
764764
}
765765
}
766766

0 commit comments

Comments
 (0)