I encountered the same issue today; if you want to simply display as a column with no scrolling applied, the following code worked well for me:
.tabs {
display: flex;
flex-direction: column;
height: 100%;
}
.tabs ul {
display: flex;
flex-direction: column;
}