SimpleLoading.vue 370 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="simple-loading" />
  3. </template>
  4. <style>
  5. .simple-loading {
  6. width: 30px;
  7. height: 30px;
  8. border: 2px solid var(--color-primary);
  9. border-top-color: transparent;
  10. border-radius: 100%;
  11. animation: circle infinite 0.75s linear;
  12. }
  13. @keyframes circle {
  14. 0% {
  15. transform: rotate(0);
  16. }
  17. 100% {
  18. transform: rotate(360deg);
  19. }
  20. }
  21. </style>