-
Notifications
You must be signed in to change notification settings - Fork 185
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
Remove overflow-x: hidden from body #5890
Conversation
It's known that when body has overflow-x: hidden - scroll handler on window doesn't handle scroll events. We recommend users of the library to apply this manually is they need.
size-limit report 📦
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 1b4176d:
|
e2e tests |
👀 Docs deployed
Commit 1b4176d |
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #5890 +/- ##
=======================================
Coverage 81.20% 81.20%
=======================================
Files 299 299
Lines 9200 9200
Branches 3128 3128
=======================================
Hits 7471 7471
Misses 1729 1729
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Известно, что при `overflow-x: hidden` на `body` события скролла не всплывают до `window`. И библиотеки (реализующие виртуальные списки), которые слушают события скролла `window` ломаются. Рекоммендуем пользователям библиотеки самим выставлять `overflow-x: hidden` на `body`, если это действительно нужно по какой-то причине. Возможно, что выставим это же на `AppRoot`, если в этом будет необходимость, как в `embedded` режиме.
✅ v5.9.0 🎉 |
Описание
Известно, что при
overflow-x: hidden
наbody
события скролла не всплывают доwindow
. И библиотеки (реализующие виртуальные списки [react-virtualizer]), которые слушают события скроллаwindow
ломаются.Рекоммендуем пользователям библиотеки самим выставлять
overflow-x: hidden
наbody
, если это действительно нужно по какой-то причине.Возможно, что выставим это же на
AppRoot
, если в этом будет необходимость, как вembedded
режиме.