Current Behavior
The roadmap page is not scrollable and can only be accessed using the box. When visiting the AI Java Full Stack Engineer roadmap (and likely other roadmap pages), the page content gets cut off and users are unable to scroll down to view the rest of the roadmap. This makes the majority of the content completely inaccessible.
Affected Page:
https://www.internhack.xyz/learn/roadmaps/ai-13-java-full-stack-engineer-roadmap-for-saas-giants-mpkvaudg
-Navigate to the roadmap page linked above
-Attempt to scroll down using mouse wheel, trackpad, or scrollbar
-The page does not scroll hence content below the visible viewport is unreachable
Suggested Improvement
This is likely caused by one of the following CSS issues on the roadmap page container or a parent element:
overflow: hidden applied to body, html, or a wrapper div
height: 100vh or height: 100% on a container without overflow-y: auto/scroll
A fixed/absolute positioned overlay blocking scroll events
A ReactFlow or similar canvas component capturing all scroll events without propagating them
Scroll can be enabled by
csshtml, body {
overflow-y: auto; /* or scroll */
height: auto;
}
Or if using a container div:
css.roadmap-container {
overflow-y: auto;
max-height: 100vh;
}
Benefits
``
Ease in accessing and understanding the generated roadmap
Possible Implementation
No response
Current Behavior
The roadmap page is not scrollable and can only be accessed using the box. When visiting the AI Java Full Stack Engineer roadmap (and likely other roadmap pages), the page content gets cut off and users are unable to scroll down to view the rest of the roadmap. This makes the majority of the content completely inaccessible.
Affected Page:
https://www.internhack.xyz/learn/roadmaps/ai-13-java-full-stack-engineer-roadmap-for-saas-giants-mpkvaudg
-Navigate to the roadmap page linked above
-Attempt to scroll down using mouse wheel, trackpad, or scrollbar
-The page does not scroll hence content below the visible viewport is unreachable
Suggested Improvement
This is likely caused by one of the following CSS issues on the roadmap page container or a parent element:
Scroll can be enabled by
Or if using a container div:
Benefits
``
Ease in accessing and understanding the generated roadmap
Possible Implementation
No response