(spotify) add spotify player

This commit is contained in:
2020-07-22 22:19:05 +02:00
parent 589fe8ee5f
commit d5402fe154
14 changed files with 883 additions and 41 deletions

View File

@@ -60,3 +60,16 @@ a {
.fade-leave-to {
opacity: 0;
}
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
img.loader {
animation: rotating 4s linear infinite;
}