From d422ff46ff8e3ccbc3d3852ca875d140270a2c4f Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 6 Feb 2026 16:07:33 +0000 Subject: [PATCH] fixed dogshit scroll --- nginx/vue/src/components/util/AutoScroll.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/vue/src/components/util/AutoScroll.vue b/nginx/vue/src/components/util/AutoScroll.vue index acf041d..548448f 100644 --- a/nginx/vue/src/components/util/AutoScroll.vue +++ b/nginx/vue/src/components/util/AutoScroll.vue @@ -9,7 +9,7 @@ import { useTemplateRef, onMounted, onBeforeUnmount } from "vue"; const container = useTemplateRef("container"); -const SPEED = 0.5; // px per frame +const SPEED = 1; // px per frame const PAUSE = 2000; // ms at top/bottom let direction = 1; // 1 = down, -1 = up