Viewing a single comment thread. View all comments

leftous wrote (edited )

Reply to comment by emma in [META] A word on feature requests by emma

So far the best I've found that works acceptably is making the overflow scroll (screenshot).

@media screen and (max-width: 767px) {
    .tabs__bar {
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .tabs__tab {
       margin-bottom: 2%;
    }
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent; /* make scrollbar transparent */
    }
}

The y overflow is annoying because of the way "most commented" sorting is named. Maybe u/Dunde's suggestion would help.

2