Update: change update icon + animation

This commit is contained in:
Rectos VX
2024-05-09 17:31:12 +04:00
parent 72ba97a00c
commit 3a27d97811
3 changed files with 30 additions and 17 deletions

View File

@@ -75,11 +75,11 @@
}
#tool-icon {
height: 100%;
height: 100%;
}
#tool-text {
margin: 0.5rem 0.5rem 0rem;
margin: 0.5rem 0.5rem 0rem;
}
.card-title {
@@ -135,3 +135,16 @@ margin: 0.5rem 0.5rem 0rem;
}
}
.update-notice {
animation: scale 1s infinite alternate;
}
@keyframes scale {
0% {
transform: scale(0.96);
}
100% {
transform: scale(1);
}
}