Hi! I want a top fixed menu but I also want to scroll through the menu if its longer than the mobile screen. I tried the code below and it works perfectly when you click the menu bar and scroll through. But the height: 100vh; has created a sheet cover over the rest of the website. I tried reducing the value but it does not work. Need help! Please see image as well. Thanks!
@media (max-width: 979px){
.x-navbar-fixed-top,
.x-navbar-fixed-left,
.x-navbar-fixed-right {
position: fixed;
overflow-y: scroll;
height: 100vh;
}
}