Problem:
The user asks if Toolset enqueue scripts and styles to the frontend. He is trying to optimize the loading speed of the site.
Solution:
Yes, Toolset views/blocks and forms will load some styles and scripts to the frontend. The latest release of Views/Blocks has implemented an optimization technique that lazy loads the scripts and styles using Javascript. This behavior can be disabled using a constant in wp-config.php file. Check it on this previous ticket
The issue here is that the user wanted to display a different column number when a view is being displayed on a mobile vs desktop. ON the desktop the view displays 3 items per page but on mobile the user wants 1 item per page.
Solution:
In order to do this you're going to have to create a separate view for mobile where you will set this view to only display 1 item per page.
Secondly you do have the option to hide the view block when you add it to a container block.
What you will need to do is have 2 container blocks that will contain your Desktop and Mobile slider. On these container blocks you will set the desktop one to display only on desktops and the mobile container block to display only on Mobiles.
This can be done using the advanced settings of the container block.