Add version check to app frame

This commit is contained in:
Michael Shamoon
2022-04-01 01:53:59 -07:00
parent 7b6dccf5ef
commit bfd11060ec
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%;
}
}