Skip to content

Commit

Permalink
BUGFIX: Let progress indicator spin
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebobo committed Jun 24, 2024
1 parent 1fbb7f2 commit 249d6c5
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,19 @@
gap: 1rem;
--icon-size: 0.875em;
}

.activity svg {
animation-name: spinner;
animation-duration: 2s;
animation-iteration-count: infinite;
transform-origin: 50% 50%;
display: inline-block;
}
@keyframes spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

0 comments on commit 249d6c5

Please sign in to comment.