Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

24
node_modules/react-select/scss/spinner.scss generated vendored Normal file
View File

@@ -0,0 +1,24 @@
//
// Spinner
// ------------------------------
@import 'mixins';
@mixin Select-spinner($size, $orbit, $satellite)
{
@include animation( Select-animation-spin 400ms infinite linear );
@include square($size);
box-sizing: border-box;
border-radius: 50%;
border: floor(($size / 8)) solid $orbit;
border-right-color: $satellite;
display: inline-block;
position: relative;
}
@keyframes Select-animation-spin {
to { transform: rotate(1turn); }
}
@-webkit-keyframes Select-animation-spin {
to { -webkit-transform: rotate(1turn); }
}