style(offline icon): use blue for loading, red for failed after 30 seconds

This commit is contained in:
Tom (plebeius.eth)
2024-07-19 17:39:47 +02:00
parent c3f7250256
commit 95233944c1
3 changed files with 2 additions and 2 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

+1 -1
View File
@@ -39,7 +39,7 @@ hr {
} }
.yellowOfflineIcon { .yellowOfflineIcon {
background-image: url('/public/assets/icons/offline-yellow.png'); background-image: url('/public/assets/icons/offline-blue.png');
} }
.redOfflineIcon { .redOfflineIcon {
+1 -1
View File
@@ -44,7 +44,7 @@ const useSubplebbitOfflineStore = create<SubplebbitOfflineStore>((set) => ({
}, },
}, },
})); }));
}, 7000); }, 30000);
}, },
})); }));