diff --git a/AppImage/components/proxmox-dashboard.tsx b/AppImage/components/proxmox-dashboard.tsx index 68fe1c8..f527229 100644 --- a/AppImage/components/proxmox-dashboard.tsx +++ b/AppImage/components/proxmox-dashboard.tsx @@ -133,12 +133,12 @@ export function ProxmoxDashboard() { const handleScroll = () => { const currentScrollY = window.scrollY - if (currentScrollY < 100) { + if (currentScrollY < 90) { setShowNavigation(true) - } else if (currentScrollY > lastScrollY + 20) { + } else if (currentScrollY > lastScrollY + 12) { // Scrolling down - hide navigation setShowNavigation(false) - } else if (currentScrollY < lastScrollY - 20) { + } else if (currentScrollY < lastScrollY - 12) { // Scrolling up - show navigation setShowNavigation(true) } @@ -317,7 +317,7 @@ export function ProxmoxDashboard() {