Added reload button in favorites tab

This commit is contained in:
RemixDev
2020-06-10 18:45:59 +02:00
parent a0204c4953
commit 9cdad5d13d
7 changed files with 29796 additions and 9 deletions

View File

@@ -1,3 +1,27 @@
.favorites_tablinks.active {
color: var(--accent-text);
}
div.reload-button {
width: 36px;
height: 36px;
}
div.reload-button i{
padding: 6px;
}
div.reload-button.spin {
animation-name: spin;
animation-duration: 0.5s;
animation-iteration-count: infinite;
animation-timing-function: ease-out;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}