1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

comment appearance animation

This commit is contained in:
Fedor Katurov 2019-10-21 20:03:47 +07:00
parent 4971c85132
commit 8daa08d61b

View file

@ -1,2 +1,11 @@
.wrap {
@keyframes appear {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.wrap {
animation: appear 1s;
}