Refactor AudioPlayer component layout and styles for improved UI consistency

This commit is contained in:
2025-06-19 19:28:11 +00:00
committed by GitHub
parent 7e89ca8532
commit 2c31d22e0e
2 changed files with 72 additions and 143 deletions

View File

@@ -11,6 +11,19 @@ body {
.text-balance {
text-wrap: balance;
}
.animate-scroll {
animation: scroll 8s linear infinite;
}
}
@keyframes scroll {
0%, 20% {
transform: translateX(0);
}
80%, 100% {
transform: translateX(-100%);
}
}
@layer base {