Dropdown menus on Services and Industries nav items are unclickable #132
Labels
No Label
P0 Critical
P1 High
P2 Medium
P3 Low
accessibility
backend
bug
content
data-integrity
enhancement
frontend
infra
integration
owner
owner-input
performance
performance
phase-7
phase-8
security
seo
ui
ux
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: null/Queue-North-Website#132
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug
The dropdown menus that appear under Services and Industries in the desktop header navigation cannot be clicked. Hovering reveals the menu, but moving the cursor from the nav link into the dropdown causes the menu to close before any item can be clicked.
Root Cause
In
src/components/layout/Header.jsx, the dropdowns use pure CSSgroup-hoverwith amt-2(8px) gap between the nav link and the dropdown panel. When the cursor crosses this gap, thegroup-hoverstate is lost and the menu closes immediately.Fix Options
mt-2gap with padding — usept-2on an invisible hover bridge ortop-fullwithout margin, with internal padding so the hover zone is contiguous@radix-ui/react-navigation-menuor a proper dropdown component with click/hover state logic instead of pure CSS::afterpseudo-element or padding-top zone that fills the gapOption 1 or 3 is the quickest fix. Option 2 is the most robust long-term.
Steps to Reproduce
Environment