croswil_comp_adm 2.0.22 → 2.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.css +19 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/bundle.css
CHANGED
|
@@ -455,6 +455,25 @@ b {
|
|
|
455
455
|
transform: translateX(-50%) translateY(1rem);
|
|
456
456
|
}
|
|
457
457
|
|
|
458
|
+
.loader {
|
|
459
|
+
width: 80px;
|
|
460
|
+
padding: 8px;
|
|
461
|
+
aspect-ratio: 1;
|
|
462
|
+
border-radius: 50%;
|
|
463
|
+
background: var(--color-base);
|
|
464
|
+
--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
465
|
+
-webkit-mask: var(--_m);
|
|
466
|
+
mask: var(--_m);
|
|
467
|
+
-webkit-mask-composite: source-out;
|
|
468
|
+
mask-composite: subtract;
|
|
469
|
+
animation: l3loader 1s infinite linear;
|
|
470
|
+
}
|
|
471
|
+
@keyframes l3loader {
|
|
472
|
+
to {
|
|
473
|
+
transform: rotate(1turn);
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
458
477
|
|
|
459
478
|
|
|
460
479
|
/*************************************************************
|