mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
25 lines
270 B
SCSS
25 lines
270 B
SCSS
|
.inline-spinner {
|
||
|
&--fade {
|
||
|
&-enter,
|
||
|
&-exit {
|
||
|
transition: opacity 300ms;
|
||
|
}
|
||
|
|
||
|
&-enter {
|
||
|
opacity: 0;
|
||
|
|
||
|
&-active {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-exit {
|
||
|
opacity: 1;
|
||
|
|
||
|
&-active {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|