feat(frontend): add @keyframes slide for indeterminate upload progress animation

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-18 13:57:44 +02:00
committed by marcel
parent 0c2435e0a8
commit fa14a11244

View File

@@ -363,3 +363,12 @@
outline: 3px solid ButtonText;
}
}
@keyframes slide {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(350%);
}
}