LoadingIndicator.scss 306 B

12345678910111213141516171819202122
  1. @import '../vars.scss';
  2. .loading-indicator {
  3. align-items: center;
  4. display: inline-flex;
  5. flex-direction: row;
  6. svg {
  7. @include icon-s;
  8. animation: 0.5s linear infinite spin;
  9. margin-right: $space-xs;
  10. }
  11. }
  12. @keyframes spin {
  13. from {
  14. rotate: 0deg;
  15. }
  16. to {
  17. rotate: 180deg;
  18. }
  19. }