From a614ed818b7d435546bb86a887f97de53f019af1 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Thu, 16 Apr 2026 15:51:55 +0200 Subject: fix: hamburger menu click handler and horizontal scroll issues - Improve hamburger menu JS with better error handling and console warnings - Add preventDefault() to button click handlers for reliability - Handle document ready state check (in case script runs before DOMContentLoaded) - Add overflow-x-hidden to html and body to prevent horizontal scrolling on mobile - Rebuild CSS: main.min.css updated Co-Authored-By: Claude Haiku 4.5 --- themes/danix-xyz-hacker/assets/css/main.min.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'themes/danix-xyz-hacker/assets/css/main.min.css') diff --git a/themes/danix-xyz-hacker/assets/css/main.min.css b/themes/danix-xyz-hacker/assets/css/main.min.css index 82ac77c..36c66d1 100644 --- a/themes/danix-xyz-hacker/assets/css/main.min.css +++ b/themes/danix-xyz-hacker/assets/css/main.min.css @@ -554,7 +554,12 @@ video { display: none; } +html { + overflow-x: hidden; +} + body { + overflow-x: hidden; background-color: var(--bg); font-family: IBM Plex Sans, sans-serif; color: var(--text); -- cgit v1.2.3