Enhance user feedback and micro-interactions across the UI#340
Open
Athina09 wants to merge 24 commits intocore-stack-org:mainfrom
Open
Enhance user feedback and micro-interactions across the UI#340Athina09 wants to merge 24 commits intocore-stack-org:mainfrom
Athina09 wants to merge 24 commits intocore-stack-org:mainfrom
Conversation
added 24 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
Made-with: Cursor
Made-with: Cursor
Made-with: Cursor
Add a global toast system and map loading overlay so key actions and slow operations provide clearer, consistent feedback. Made-with: Cursor
- normalizeMwsFeatures handles single OL or GeoJSON feature (wrap to array) - Dashboard mwsForMap always passes array of all matched MWS for basemap - Terrain and drainage layers crop to full project area (all micro-watersheds) 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
This PR improves user feedback and micro-interactions across the UI so actions feel more responsive and clear. It adds consistent loading indicators, non-blocking success/error messages, and subtle motion for key interactions.
Problem it Solves
Our UI currently provides limited feedback during user actions, which can make the experience feel unresponsive or unclear. Users often see blank or static states while data is loading and get blocking
alert()dialogs instead of contextual confirmations. This work introduces consistent, polished feedback so users always understand what is happening and feel confident that their actions are working.Changes
Loading states
Success / error / toast messages
alert()usages with specific, actionable error messages where appropriate.Transitions & animations
Non-goals
Test Plan