I have a drop down menu that will not let you scroll all the way to the bottom due to a top margin keeping the popup from appearing on the header. I have tried adding padding but it's not working. Here is the code. Any help is appreciated.
.shifter-enabled .shifter-navigation {
width: 270px;
height: 100%;
position: fixed;
padding-bottom: 20px;
top: 30px;
left: 0;
z-index: 5;
background: #ffffff;
display: block;
overflow-y: scroll;
pointer-events: none;
-webkit-transition: opacity 0.001s linear 0.2s, -webkit-transform 0.2s ease;
transition: opacity 0.001s linear 0.2s, transform 0.2s ease;
}