This commit is contained in:
2025-09-19 14:25:20 +08:00
parent 269893a435
commit fbf3f77229
24949 changed files with 2839404 additions and 0 deletions

43
node_modules/element-plus/theme-chalk/src/spinner.scss generated vendored Normal file
View File

@@ -0,0 +1,43 @@
@use 'mixins/mixins' as *;
@include b(time-spinner) {
width: 100%;
white-space: nowrap;
}
@include b(spinner) {
display: inline-block;
vertical-align: middle;
}
@include b(spinner-inner) {
animation: rotate 2s linear infinite;
width: 50px;
height: 50px;
& .path {
stroke: getCssVar('border-color', 'lighter');
stroke-linecap: round;
animation: dash 1.5s ease-in-out infinite;
}
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
@keyframes dash {
0% {
stroke-dasharray: 1, 150;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -35;
}
100% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -124;
}
}