I am trying to display the product tabs the same on desktop as on mobile.
Currently my product tabs in desktop view look like this:
On mobile view they look like this:
The theme file is theme.css.liquid and there is the current code:
/* Tabs */
.pxu-tabs {
display: flex;
flex-wrap: wrap;
margin: 1rem 0;
}
@media screen and (max-width: 719px) {
.pxu-tabs.pxu-tabs–bottom-true {
padding-right: 10px;
padding-left: 10px;
}
}
How do i ensure the that tabs in mobile view are shown on 1 line rather than multiple? (Im using Empire theme)

