Improve global layout, spacing, and smooth scrolling on landing/dashboard pages#322
Open
Athina09 wants to merge 21 commits intocore-stack-org:developmentfrom
Open
Improve global layout, spacing, and smooth scrolling on landing/dashboard pages#322Athina09 wants to merge 21 commits intocore-stack-org:developmentfrom
Athina09 wants to merge 21 commits intocore-stack-org:developmentfrom
Conversation
added 19 commits
March 7, 2026 13:40
…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
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
10 tasks
added 2 commits
March 11, 2026 23:58
Made-with: Cursor
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
What changed
Layout & spacing
Global container
max-w-7xl mx-auto) with consistent horizontal padding (px-4) and vertical padding (py-8).12‑column grid
Section spacing & readability
Smooth scrolling
Global
htmlelement:scroll-behavior: smooth;.Landing scroll container
landing-scroll-containerto usescroll-behavior: smoothinstead ofauto, while preserving existing scroll-padding and momentum scrolling config.In-page navigation (Know / Plan / Track & Assess)
scrollToSectionhelper that:lenis.scrollTo('#section-id', { duration, offset })) when available for ultra-smooth scrolling.element.scrollIntoView({ behavior: 'smooth', block: 'start' })when Lenis is not yet initialised.landing-know-sectionlanding-plan-sectionlanding-track-sectionscrollToSection(...)with the corresponding section ID.Rationale
Files touched (high level)
kyl_dashboard.jsxindex.csshtml { scroll-behavior: smooth; }..landing-scroll-containertoscroll-behavior: smooth.LE_homepage.jsxscrollToSectionhelper that integrates with Lenis and provides a smooth-scroll fallback.Acceptance criteria checklist