I use a custom query for mobile. Noticed it was impossible to scroll using iOS Safari and looked through the settings in Config Tool, nothing seemed to fix this.
One way was to circumvent it by setting a limited number of items displayed (5 for instance) and activate the paging bar. I didn't want this behaviour, so I did some digging in the CSS:

I fixed this by using this CSS:
/*mobileQuery is the class name of my mobile query*/
.mobileQuery div{touch-action:auto !important;}
Now I can scroll as intended.
Now to my question, why would anyone want "touch-action: none" ?