fix(ui): smooth transitions and align settings layout#1736
Merged
bobleer merged 4 commits intoJul 24, 2026
Conversation
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
Type and Areas
Type: UI/UX, regression fix
Areas: Web UI, desktop settings
Motivation / Impact
Previously, interaction feedback and page transitions were inconsistent. Some scene and settings switches appeared to flash or hard-jump because lazy content replaced the current UI before the incoming subtree was ready. Settings pages also shifted horizontally depending on scrollbar presence and contained page-specific spacing overrides.
This change establishes shared motion and layout contracts so current and future surfaces inherit consistent behavior by default. Reduced-motion preferences remain respected.
Verification
pnpm run type-check:web— passedpnpm --dir src/web-ui run test:run src/app/components/NavPanel/NavPanelLayout.test.ts src/app/stores/sceneStore.test.ts src/app/scenes/settings/SettingsScene.test.tsx src/component-library/components/Modal/Modal.test.tsx src/infrastructure/config/components/common/ConfigPageLayout.test.tsx src/infrastructure/config/components/ReviewConfig.test.tsx src/infrastructure/config/components/ExternalSourcesConfig.test.tsx— 7 files, 65 tests passedpnpm run build:web— passed, including Monaco asset verificationgit diff --check— passedReviewer Notes
src/web-ui/src/app/styles/motion.scss.ConfigPageLayoutandConfigPageHeaderframes.Checklist