YesPlayMusic/packages/web/components/DailyTracksCard.module.scss
2022-05-12 02:45:43 +08:00

14 lines
189 B
SCSS

@keyframes move {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-50%);
}
}
.animation {
animation: move 38s infinite;
animation-direction: alternate;
}