mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
13 lines
189 B
SCSS
13 lines
189 B
SCSS
@keyframes move {
|
|
0% {
|
|
transform: translateY(0);
|
|
}
|
|
100% {
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
.animation {
|
|
animation: move 38s infinite;
|
|
animation-direction: alternate;
|
|
}
|