Files
microsoft--rd-agent/web/src/components/loading-dot.vue
T
wehub-resource-sync e64161ec32
CI / ci (3.11) (push) Has been cancelled
CI / ci (3.10) (push) Has been cancelled
CI / dependabot (push) Has been cancelled
Release / release_and_publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:36:15 +08:00

24 lines
422 B
Vue

<template>
<span class="spinner"></span>
</template>
<style scoped lang="scss">
.spinner {
display: inline-block;
height: 35px;
width: 35px;
margin-top: 3px;
// background: rgba(0, 0, 0, 0.2);
border-radius: 50%;
border-top: 2px solid #fff;
border-right: 2px solid transparent;
animation: spinner6 700ms linear infinite;
}
@keyframes spinner6 {
to {
transform: rotate(360deg);
}
}
</style>