I have created sidenav in the below stackblitz
I have given overflow-x: visible
and overflow-y: auto/hidden
so that, I should see vertical scrolling if there are more menu items.
But this breaks, my nested sidemenu options which is seen under div and not above.
* Top Level Menu */
.nestedsidemenu ul {
z-index: 100;
margin: 0;
padding: 0;
position: relative;
list-style: none;
overflow-x: visible;
overflow-y: scroll;
}
Due to this, my nested sidenav options are not seen.
Note: As of now, sidemenu in stackblitz is covering complete view. Please scroll or resize the output window to see the correct resolution
Any fix that can be given so that, I can see nested sidenav options?