Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dialog background layout shift #5489

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

cyeet
Copy link

@cyeet cyeet commented Jan 3, 2025

Closes https://github.com/github/copilot-productivity/issues/2608

Background

Original PR: Prevents body scroll when Dialog is open #3547

This issue is caused by the overscroll: hidden behaviour which removes the scrollbar when the dialog is shown.
As you can see, the layout noticeably shifts in the background.

current-behaviour.mov

I have explored several solutions, each with its own tradeoffs:

  1. overscroll-behavior
    I tried adding overscroll-behavior: contain on the dialog and ::backdrop element but that didn’t seem to work.

  2. Always showing the scrollbars
    Using overscroll-gutter: stable or overflow-y: scroll will always show the scrollbar, which leaves a blank strip down the side of the page even when the scrollbar isn’t there, which can look awkward. But this is the most stable solution, likely to work on untested layouts.

scrollbar-gutter.mov
  1. Compensate for missing scrollbar
    Another avenue I tried was to add a padding or margin to the body to compensate for the missing scrollbar ala Bootstrap. It works but any fixed position components will still see a jitter as the top/right/bottom/left positioning doesn't respect padding or margin. It could be fixed programmatically by finding all fixed position elements and adding an offset calc(100vw - 100%).

Notice the background layout is unchanged.

padding-right.mov
  1. Position fixed
    Finally I followed the suggestion from StackOverflow.
    It kinda works but could likely fail with other layouts.
position-fixed-solution.mov
  1. Positioning inside a 100vw width parent
    I haven't tried this: https://dev.to/rashidshamloo/preventing-the-layout-shift-caused-by-scrollbars-2flp

  2. Leave it
    I'm not sure if the solutions listed above is worth the problems they might caused.

References:
https://frontendmasters.com/blog/scroll-locked-dialogs/

Changelog

New

Changed

Removed

Rollout strategy

  • Patch release
  • Minor release
  • Major release; if selected, include a written rollout or migration plan
  • None; if selected, include a brief description as to why

Testing & Reviewing

Merge checklist

@cyeet cyeet requested a review from a team as a code owner January 3, 2025 18:20
@cyeet cyeet requested a review from TylerJDev January 3, 2025 18:20
Copy link

changeset-bot bot commented Jan 3, 2025

⚠️ No Changeset found

Latest commit: 1b132d7

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions bot added the integration-tests: recommended This change needs to be tested for breaking changes. See https://arc.net/l/quote/tdmpakpm label Jan 3, 2025
Copy link
Contributor

github-actions bot commented Jan 3, 2025

👋 Hi, this pull request contains changes to the source code that github/github depends on. If you are GitHub staff, we recommend testing these changes with github/github using the integration workflow. Thanks!

Copy link
Contributor

github-actions bot commented Jan 3, 2025

size-limit report 📦

Path Size
packages/react/dist/browser.esm.js 103.83 KB (+0.13% 🔺)
packages/react/dist/browser.umd.js 104.14 KB (-0.01% 🔽)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integration-tests: recommended This change needs to be tested for breaking changes. See https://arc.net/l/quote/tdmpakpm
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant