From fa14a112441de46f6637cf6adffb473ff90a6b6b Mon Sep 17 00:00:00 2001 From: Marcel Date: Sat, 18 Apr 2026 13:57:44 +0200 Subject: [PATCH] feat(frontend): add @keyframes slide for indeterminate upload progress animation Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/routes/layout.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/routes/layout.css b/frontend/src/routes/layout.css index bd984cdf..aa4c6ba9 100644 --- a/frontend/src/routes/layout.css +++ b/frontend/src/routes/layout.css @@ -363,3 +363,12 @@ outline: 3px solid ButtonText; } } + +@keyframes slide { + 0% { + transform: translateX(-100%); + } + 100% { + transform: translateX(350%); + } +}