Fix: Landing page scroll, animation glitch, and scroll-down button#317
Open
Athina09 wants to merge 3 commits intocore-stack-org:developmentfrom
Open
Fix: Landing page scroll, animation glitch, and scroll-down button#317Athina09 wants to merge 3 commits intocore-stack-org:developmentfrom
Athina09 wants to merge 3 commits intocore-stack-org:developmentfrom
Conversation
added 3 commits
March 8, 2026 20:36
…andscape visible - Make scroll container explicit (flex layout, main scrolls only) - Use scroll-snap proximity and GPU layer for smoother scroll - Replace backdrop-blur on sections with bg-white/10 to reduce jank - Fix layout: h-screen + navbar + footer so first section shows below navbar - Add landing-scroll-container CSS (scroll-padding, -webkit-overflow-scrolling) - Semantic structure: header, main, footer with shrink-0 for stable layout Made-with: Cursor
…l-behavior, scroll-margin Made-with: Cursor
…tion Made-with: Cursor
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.
Summary
Fixes scroll and animation glitching on the landing page, keeps the "Know your landscape" section visible below the navbar, and adds a scroll-down button in the bottom-right corner.
Problem
Solution
flex-1 min-h-0on<main>) so only that area scrolls and scroll-snap works.scrollBehavior: "smooth"to avoid conflict with scroll-snap.backdrop-blurwithbg-white/10to reduce repaint jank during scroll.h-screenwith<header>,<main>,<footer>; navbar and footer useshrink-0so "Know your landscape" is fully visible below the navbar..landing-scroll-containerand.landing-scroll-content(GPU-friendly wrapper, scroll-padding, touch scrolling, trackpad-sync tuning).Files changed
src/pages/LE_homepage.jsxsrc/index.cssHow to verify