If you use Blocksy Pro and have the WooCommerce Extra extension activated, the full product gallery (thumbnails) will be scrollable instead of taking half of the screen real estate. You can disable this and return to the Blocksy free behaviour, using this snippet.
add_filter('blocksy:woocommerce:gallery-pills-slider:enabled', function ($current_value) {
return false;
});