Current version of CB has no responsive list view, but you could try this solution...
Add this css code at the end of your current css template, then you will be able to scroll your page horizontally.
.cbListView .table {
display: block;
overflow-x: scroll;
}
or even better, since you don't have this issue on desktop, add the above code into a media query to make sure it only fires on mobile:
@media (max-width:460px) {
.cbListView .table {
display: block;
overflow-x: scroll;
}
}
Please let us know how this works for you.
Regards,
Mario