Found an answer, sorry for the simplistic request.
I added class-“responsive” to the <table>, <table class=”responsive”>. And the following code to the additional CSS
@media only screen and (max-width: 840px) {
table.responsive {
margin-bottom: 0;
overflow: hidden;
overflow-x: scroll;
display: block;
white-space: nowrap;
}
}