mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +00:00
4f6e83acf4
* Check offline status immediately. * If they start the page offline, show a less severe error message. * Get rid of offline aware header. Disable wallet options when offline. * Add online indicator to the header. * Prevent some components from render, some requests from firing when offline. * Allow for array of elements with typing. * Dont show dollars in fee summary when offline. * Fix up saga tests. * Fix sidebar component offline styles. * Remove force offline. * Dont request rates if offline. * Nonce in advanced, show even of online. * Show invalid advanced props. * Fix up offline poll tests.
27 lines
369 B
SCSS
27 lines
369 B
SCSS
@import 'common/sass/variables';
|
|
|
|
@keyframes ban-wifi {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(1.3);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
|
|
.OfflineTab {
|
|
text-align: center;
|
|
|
|
&-icon {
|
|
opacity: 0.8;
|
|
|
|
.fa-ban {
|
|
color: $brand-danger;
|
|
animation: ban-wifi 500ms ease 200ms 1;
|
|
animation-fill-mode: both;
|
|
}
|
|
}
|
|
}
|