Skip to content

Commit 249d6c5

Browse files
committed
BUGFIX: Let progress indicator spin
1 parent 1fbb7f2 commit 249d6c5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

packages/commandbar/src/components/CommandBarFooter/CommandBarFooter.module.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,19 @@
2020
gap: 1rem;
2121
--icon-size: 0.875em;
2222
}
23+
24+
.activity svg {
25+
animation-name: spinner;
26+
animation-duration: 2s;
27+
animation-iteration-count: infinite;
28+
transform-origin: 50% 50%;
29+
display: inline-block;
30+
}
31+
@keyframes spinner {
32+
0% {
33+
transform: rotate(0deg);
34+
}
35+
100% {
36+
transform: rotate(360deg);
37+
}
38+
}

0 commit comments

Comments
 (0)