fix: resolve mobile menu issues, responsiveness, and routing errors#60
Merged
maskedsyntax merged 1 commit intomainfrom Feb 10, 2026
Merged
fix: resolve mobile menu issues, responsiveness, and routing errors#60maskedsyntax merged 1 commit intomainfrom
maskedsyntax merged 1 commit intomainfrom
Conversation
- Fix mobile menu auto-closing by removing conflicting event handlers - Remove global document listeners (mousedown/touchstart) that caused double-toggling - Simplify toggle logic to use single onclick handler - Remove unnecessary preventDefault/stopPropagation calls - Move menu outside nav element to prevent overflow clipping - Improve mobile responsiveness across components - Add overflow-x: hidden to html, body, and main elements - Fix horizontal scrolling issues on mobile devices - Adjust container widths and padding for mobile breakpoints - Fix HowItWorks section code blocks to wrap properly on small screens - Ensure navbar and mobile menu respect viewport constraints - Fix 404 error on /docs page reload - Add fallback: 'index.html' to adapter-static configuration - Enables client-side routing for static builds on Vercel - Fix 500 error from Svelte 5 syntax incompatibility - Remove mixed event handler syntax (on:touchstart) - Use consistent Svelte 5 event handler format - Update build output directory to 'dist' for Vercel compatibility - Change from 'build' to 'dist' in svelte.config.js - Update .gitignore to include dist directory
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix mobile menu auto-closing by removing conflicting event handlers
Improve mobile responsiveness across components
Fix 404 error on /docs page reload
Fix 500 error from Svelte 5 syntax incompatibility
Update build output directory to 'dist' for Vercel compatibility