Skip to content

Commit

Permalink
fix: spin animation not incuded when using JIT
Browse files Browse the repository at this point in the history
  • Loading branch information
saadeghi committed Apr 22, 2021
1 parent 6d5102e commit 7a10e5c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/base/components/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,15 @@
animation: spin 10s linear infinite;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

/* group */
.btn-group {
@apply flex flex-wrap;
Expand Down

0 comments on commit 7a10e5c

Please sign in to comment.