Currently working on a multi-level flyout menu to be integrated into a daterange picker for selecting time periods. Check out the jsfiddle link here: https://jsfiddle.net/6t72hd4x/1/
I attempted to set overflow-y: auto;
in the .inner-list
class to handle vertical overflow of the year list (https://jsfiddle.net/6t72hd4x). Unfortunately, this caused issues with horizontal overflow as the inner lists became invisible. Even adding overflow-x: visible
did not solve the problem.
Is there a way to allow both inner menus and vertical scrolling to work simultaneously?
Just a note: I come from a backend development background with limited frontend experience, so my approach here may not be the best.