Вот это работает, также с некоторыми другими предложениями:
aside{
display: flex;
flex-flow: column;
position: fixed;
height: 100%;
width: 25%;
border-right: 1px solid rgba(0, 0, 0, 0.2);
z-index: 1; /* 1 should be enough if there are no other z-index */
top:0;
left: 0;
}
#big-title-list{
flex: 1; /* So it fills the available vertical space */
padding: 0;
overflow: hidden;
overflow-y: auto; /* Only vertical scroll appears, only if needed */
margin: 0;
/* These two are just to make the content bigger and force the scroll to appear */
font-size: 18px;
line-height: 3;
}