P1: Hamburger menu does not work on mobile #23
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?
Severity: P1 — High
Problem: The hamburger menu button on mobile does not open the slide-out navigation. Tapping it has no visible effect.
Impact: Mobile users cannot navigate the site at all — no access to Services, Industries, About, Contact, or Support pages.
Where:
Header.jsx— the mobile menu uses a RadixSheet(Dialog-based) component. Likely causes:SheetContentCSSdata-[state=open]animations may not fire if Tailwindanimate-in/animate-outclasses are missing or misconfiguredSheetOverlaybackdrop may be invisible (z-index or opacity issue)z-40, sheet overlay/content isz-50but may be clipped)tailwindcss-animate) or animation keyframes not generating correctlyDialogTriggerfix from earlier consolidated the mobile menu into Header.jsx — the state binding or click handler may not be wired correctlySteps to reproduce:
Fix:
tailwindcss-animateis installed and configured intailwind.configSheetContentrenders visible output in DOM when openopen={mobileMenuOpen}/onOpenChange={setMobileMenuOpen}