Tabs tends to disappear on small screens, should be possible to scroll and select or move the overflowing items to the next line

Adding the following css seems to fix the issue for me
.mdc-tab-scroller div {
flex-wrap: wrap;
max-width: 100%;
}
Most helpful comment
Adding the following css seems to fix the issue for me
.mdc-tab-scroller div {
flex-wrap: wrap;
max-width: 100%;
}