diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 8302de8..734466a 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 + 10) { + } else if (currentScrollY > lastScrollY + 20) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 14) { + } else if (currentScrollY < lastScrollY - 20) { // Scrolling up - show navigation setShowNavigation(true) } @@ -317,7 +317,7 @@ export function ProxmoxDashboard() {