Add version check to app frame

This commit is contained in:
Michael Shamoon
2022-04-01 01:53:59 -07:00
parent f05f851da4
commit 95ce2360da
4 changed files with 48 additions and 4 deletions

View File

@@ -176,3 +176,22 @@
}
}
}
.version-check {
animation: pulse 2s ease-in-out 0s 1;
}
@keyframes pulse {
0% {
opacity: 0;
}
25% {
opacity: 100%;
}
75% {
opacity: 0;
}
100% {
opacity: 100%;
}
}