构建版本修改

This commit is contained in:
aixianling
2022-08-12 11:20:51 +08:00
parent c3f6fbbffe
commit 98946c1e28
167 changed files with 845 additions and 3473 deletions

17
components/animation.scss Normal file
View File

@@ -0,0 +1,17 @@
@keyframes breathe {
0% {
opacity: .2;
}
100% {
opacity: 1;
}
}
@keyframes floatCard {
0% {
transform: translateY(5px);
}
100% {
transform: translateY(-5px);
}
}