I'm using react-bootstrap's NavDropdown as part of a NavBar to display a list of data. Occasionally the list is longer than the rest of the view, cutting off the bottom of the list. I need to be able to add overflow: auto to the list, but can't figure out how to do it. Wrapping the NavDropdown or the items within it in a styled div breaks react-bootstrap's styling. Attempting to style the NavDropdown directly (via className or style) breaks react-bootstrap's styling. Anyone been able to solve this?
The code is roughly:
<NavBar>
<NavBar.Collapse>
<Nav>
<NavDropdown>
lots of <MenuItem />
</NavDropdown>
</Nav>
</NavBar.Collapse>
</NavBar>