started adding the logic for RSS feeds, started storing metainfo and torrent files in database directly
This commit is contained in:
24
torrent-project/node_modules/react-select/scss/spinner.scss
generated
vendored
Normal file
24
torrent-project/node_modules/react-select/scss/spinner.scss
generated
vendored
Normal 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); }
|
||||
}
|
Reference in New Issue
Block a user