We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbb7f2 commit 249d6c5Copy full SHA for 249d6c5
packages/commandbar/src/components/CommandBarFooter/CommandBarFooter.module.css
@@ -20,3 +20,19 @@
20
gap: 1rem;
21
--icon-size: 0.875em;
22
}
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