Files
dvcp_v2_webapp/ui/dv/animation.scss

18 lines
195 B
SCSS
Raw Normal View History

2022-03-25 11:09:26 +08:00
@keyframes breathe {
0% {
opacity: .2;
}
100% {
opacity: 1;
}
}
@keyframes floatCard {
0% {
transform: translateY(5px);
}
100% {
transform: translateY(-5px);
}
}