mobile menu expanded can't scroll

On mobile, when the main menu is expanded beyond what is visible on screen, you can't scroll the menu to see the items lower down.

Hi Graber,

To fix the problem with menu scroll on mobile, you can add the css code bellow to themes/benz/lessc/menu.less file:

@media screen and (max-width: 991px){
   ul.dexp-menu{
      overflow: auto;
      height: calc(100vh - 80px);
   }
}

Hope it helps.

Thank you.