``` ```
``` ``` /* Target all possible hamburger menu elements */ .header__nav-toggle, .header__nav-toggle span, .sidebar-nav, button[data-action="toggle-sidebar"], .js-mobile-nav-toggle, [class*="nav-toggle"], [class*="mobile-nav"] { touch-action: manipulation !important; -webkit-touch-callout: none !important; -webkit-tap-highlight-color: transparent !important; -webkit-user-select: none !important; cursor: pointer !important; pointer-events: auto !important; } /* Force click events on Chrome iOS */ @media screen and (max-width: 800px) { .header__nav-toggle { position: relative !important; z-index: 999 !important; background: transparent !important; border: none !important; outline: none !important; /* Add invisible clickable area */ &::before { content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px; background: transparent; cursor: pointer; } } /* Make sure sidebar can be triggered */ .sidebar-nav { -webkit-overflow-scrolling: touch !important; touch-action: pan-y !important; } }