Trying to incorporate a material-ui popover with a scrollable menu
<Popover {...popoverProps}>
<Menu className="ui-dropdown-menu">{items}</Menu>
</Popover>
Custom styles applied:
popoverStyle: {
height: '250px',
stroke: '#0098d1',
fill: '#0098d1',
}
Encountering an issue where the menu automatically scrolls to the bottom when opened - any insights on why this might be happening?