LearnNewsExamplesServices
Frontmatter
id9360
titlescroll to bottom bug on main page
stateClosed
labels
bug
assigneestobiu
createdAtMar 6, 2026, 10:21 AM
updatedAtMar 7, 2026, 3:42 PM
githubUrlhttps://github.com/neomjs/neo/issues/9360
authorMarcklarso
commentsCount1
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtMar 7, 2026, 3:42 PM

scroll to bottom bug on main page

Closed v12.1.0 bug
Marcklarso
Marcklarso commented on Mar 6, 2026, 10:21 AM

the view wont stop at the bottom of the main page

To Reproduce Steps to reproduce the behavior:

  1. Go to https://neomjs.com/#/home
  2. Scroll down to bottom of the page
  3. Page will not stay at the bottom but jump up to position shown in screenshot

Expected behavior I expect the page to stay at the bottom.

Screenshots will jump up to this position

Image

Desktop

  • OS: Windows 11 Pro
  • Browser chrome
  • Version 145.0.7632.117
Marcklarso added the bug label on Mar 6, 2026, 10:21 AM
tobiu referenced in commit 46d1f45 - "fix: scroll to bottom bug on main page (#9360)" on Mar 7, 2026, 3:40 PM
tobiu assigned to @tobiu on Mar 7, 2026, 3:40 PM
tobiu
tobiu Mar 7, 2026, 3:42 PM

Input from Gemini 3.1 Pro:

✦ Hi @Marcklarso, thank you for reporting this issue!

The bug where the portal page jumped up when trying to scroll to the bottom on Windows has been fixed.

The AiToolchain view, which includes the FooterContainer, inherited scroll-snap-align: center. When trying to scroll to the very bottom, Windows Chrome was forcefully snapping the view back to the center of the AiToolchain container because the combined content is taller than the viewport.

To fix this:

  1. Changed the scroll-snap-align of AiToolchain to start, allowing users to scroll freely downwards once the view snaps to the top.
  2. Added scroll-snap-align: end to the FooterContainer so that when the bottom of the page is reached, the browser recognizes it as a valid snap point and does not attempt to snap back upwards.

The changes have been pushed to the dev branch.

tobiu closed this issue on Mar 7, 2026, 3:42 PM