mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-14 04:54:33 +00:00
eaa9ac392c
* Unify spinner styles, enforce more SuitCSS style names * Unify spinner styles, enforce more SuitCSS style names * Hide refresh offline, adjust colors correctly.
38 lines
476 B
SCSS
38 lines
476 B
SCSS
@import 'common/sass/variables';
|
|
|
|
.InlineSpinner {
|
|
color: $gray-light;
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: 400;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
|
|
.Spinner {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
&--fade {
|
|
&-enter,
|
|
&-exit {
|
|
transition: opacity $transition-speed;
|
|
}
|
|
|
|
&-enter {
|
|
opacity: 0;
|
|
|
|
&-active {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&-exit {
|
|
opacity: 1;
|
|
|
|
&-active {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|