123456789101112131415161718192021222324 |
- <template>
- <div class="simple-loading" />
- </template>
- <style>
- .simple-loading {
- width: 30px;
- height: 30px;
- border: 2px solid var(--color-primary);
- border-top-color: transparent;
- border-radius: 100%;
- animation: circle infinite 0.75s linear;
- }
- @keyframes circle {
- 0% {
- transform: rotate(0);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
|