From bee26838e114fe2fac0b6a430c6351cd26ce8042 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Thu, 23 Oct 2025 20:12:56 +0200 Subject: [PATCH] Update proxmox-dashboard.tsx --- AppImage/components/proxmox-dashboard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index c445a99..58763f9 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -135,10 +135,10 @@ export function ProxmoxDashboard() { if (currentScrollY < 100) { setShowNavigation(true) - } else if (currentScrollY > lastScrollY + 20) { + } else if (currentScrollY > lastScrollY + 14) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 18) { + } else if (currentScrollY < lastScrollY - 16) { // Scrolling up - show navigation setShowNavigation(true) } @@ -316,7 +316,7 @@ export function ProxmoxDashboard() {