diff --git a/static/css/main.css b/static/css/main.css index 07b7d0c..57ad4df 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -2033,7 +2033,7 @@ a:focus { background: #ffffff; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15); transition: max-height 0.4s ease-in-out; - overflow: hidden; + overflow-y: auto; z-index: 99; pointer-events: none; /* Disable pointer events when hidden */ } @@ -2042,14 +2042,12 @@ a:focus { .navigation-menu:hover, .navigation-menu.menu-hover { max-height: calc(100vh - 50px); - overflow-y: auto; pointer-events: auto; /* Enable pointer events when visible */ } /* Legacy class for JS compatibility - keep for backward compatibility */ .navigation-menu.menu-open { max-height: calc(100vh - 50px); - overflow-y: auto; pointer-events: auto; }