单独构建大屏ui库,避免引入混乱

This commit is contained in:
aixianling
2024-04-12 10:22:47 +08:00
parent a4d4e3cea5
commit b5523f5f40
191 changed files with 374 additions and 355 deletions

17
ui/dv/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);
}
}