You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you open a flux:modal and the page has a scrollbar, this leads to strange user handling.
It becomes very strange if it is a flyout and it is longer. So there are two scrollbars next to each other.
Here in Github the body scrollbar is hidden.
Alpine suggestion:
x-init="$watch('show', value => { if (value) { document.body.classList.add('overflow-y-hidden'); } else { document.body.classList.remove('overflow-y-hidden'); } })"
The text was updated successfully, but these errors were encountered:
If you open a
flux:modal
and the page has a scrollbar, this leads to strange user handling.It becomes very strange if it is a
flyout
and it is longer. So there are two scrollbars next to each other.Here in Github the body scrollbar is hidden.
Alpine suggestion:
The text was updated successfully, but these errors were encountered: