Giter Site home page Giter Site logo

Comments (6)

atomiks avatar atomiks commented on June 29, 2024

Version: @floating-ui/react v0.25.4

This is a bit old. What about the latest 0.26.13?

The lockScroll on FloatingOverlay could be a problem. What happens if it's removed? Without a minimal reproduction, it's hard to debug this though.

from floating-ui.

rob-johansen avatar rob-johansen commented on June 29, 2024

I updated to 0.26.13 and the problem persists. I've been able to track it down to either lockScroll or this CSS:

html, body {
  height: 100%;
}

The problem goes away if I either comment that CSS out, or remove lockScroll. Unfortunately I still can't reproduce it in a code sandbox because my project is so complex.

from floating-ui.

rob-johansen avatar rob-johansen commented on June 29, 2024

I just figured out the true problem:

html {
  overflow-y: scroll;
}

The sad part is that I have no idea why I ever added that (it was lurking at the bottom of my global CSS file). 🤦‍♂️

Sorry for wasting your time, but if someone else runs into this hopefully they can learn from my mistake.

from floating-ui.

rob-johansen avatar rob-johansen commented on June 29, 2024

FWIW, I was able to reproduce it in this code sandbox:

https://codesandbox.io/p/sandbox/floating-ui-react-dom-template-forked-46xcfw?file=%2Fsrc%2Fstyles.css%3A2%2C5

from floating-ui.

atomiks avatar atomiks commented on June 29, 2024

It's probably good to mention this potential issue under a Troubleshooting section for FloatingOverlay docs then 👍

from floating-ui.

rob-johansen avatar rob-johansen commented on June 29, 2024

I quickly discovered why I had added that CSS! It prevents layout shift in scenarios like these:

  • A page goes from loading, where no scrollbar is present, to showing enough content that a scrollbar appears (see this example from Josh Comeau)
  • You simply navigate from a page in your app that has no scrollbar (not much content), to another page in your app that does have a scrollbar (and now your nav, for example, shifts the width of the scrollbar)

So now I've added the CSS back, along with this little "fix" at the top of my Modal component:

useEffect((): () => void => {
  document.documentElement.style.overflowY = 'unset'
  return (): void => {
    document.documentElement.style.overflowY = 'scroll'
  }
}, [])

from floating-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.