the tab control displays not correct on small devices (Responsive)
You can add the following CSS to your styles.css file if you want the tabs to wrap on a new line
.rz-tabview-nav {
flex-wrap: wrap;
}
or this one if you want them to scroll:
.rz-tabview-nav {
overflow-x: auto;
overflow-y: hidden;
}
