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

preventOverflow missing #77

Open
craiggeil opened this issue Oct 14, 2022 · 2 comments
Open

preventOverflow missing #77

craiggeil opened this issue Oct 14, 2022 · 2 comments

Comments

@craiggeil
Copy link

The old version vue popper had the ability to turn off preventOverflow so that a container would not cut off the modal. This version does not have that ability and my modals are getting cut off by a container that has an overflow set.

@tvld
Copy link

tvld commented Mar 14, 2023

This is a very bad one, as it destroys the popup and there is no way around the issue....

Screenshot from 2023-03-14 17-15-03

@agm1984
Copy link

agm1984 commented Aug 21, 2023

I was having trouble with this and PrimeVue overlays, but I was able to remove the overflow and position props which caused Popper to start working correctly:

    .some-overlay .p-dropdown-item {
        max-width: 375px;
        overflow: auto;
        position: unset;
    }

max-width was also required to stop the PrimeVue overlay from growing to fit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants