diff --git a/assets/components/ScrollableView.vue b/assets/components/ScrollableView.vue index 029639f9..62121464 100644 --- a/assets/components/ScrollableView.vue +++ b/assets/components/ScrollableView.vue @@ -25,7 +25,7 @@
@@ -95,17 +95,16 @@ function scrollToBottom(behavior: "auto" | "smooth" = "auto") { } .animate-background { - animation: gradient-animation 2s ease infinite; - background-position: center; + animation: gradient-animation 3s ease-out infinite; } @keyframes gradient-animation { 0%, 100% { - background-size: 100% 100%; + transform: translateX(-25%); } 50% { - background-size: 140% 120%; + transform: translateX(25%); } }