Added reload button in favorites tab
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user