Prerequisites
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
related to #28965 & #28963
a workaround is to set the following style in the globals:
ion-popover > * {
overflow-y: auto;
}
Prerequisites
Ionic Framework Version
v7.x
Current Behavior
When a popup is created via
PopoverControllerwith a customcomponent, 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
Code Reproduction URL
https://stackblitz.com/edit/angular-vvbkmf?file=src%2Fapp%2Fapp.component.ts
Ionic Info
see Stackblitz setup
Additional Information
related to #28965 & #28963
a workaround is to set the following style in the globals: