Prerequisites
- I have read the Contributing Guidelines.
- I agree to follow the Code of Conduct.
- I have searched for existing issues that already report this problem, without success.
Ionic Framework Version
v7.x
Current Behavior
When a popup is created via PopoverController with a custom component, the contents of the popup is not scrollable.
Expected Behavior
The content of the popup should be scrollable (as it used to be with previous versions).
Steps to Reproduce
- Click on the button within the stackblitz
- Resize/shrink the windows viewport
- Oberserve that options at the end are cut off and it is not possible to scroll
Code Reproduction URL
https://stackblitz.com/edit/angular-vvbkmf?file=src%2Fapp%2Fapp.component.ts
Ionic Info
see Stackblitz setup
Additional Information
a workaround is to set the following style in the globals:
ion-popover > * { overflow-y: auto; }

