Create indexing sticky notification that show indexing progress in all mining dashboard related pages

This commit is contained in:
nymkappa
2022-05-02 17:28:58 +09:00
parent 11cdbb3118
commit 802e10e0a9
19 changed files with 95 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
.sticky-loading {
position: fixed;
right: 10px;
z-index: 100;
@media (width > 991px) {
bottom: 15px;
}
@media (576px <= width <= 991px) {
bottom: 60px;
}
@media (width <= 575px) {
top: 17px;
}
}