Keep Sidebar Widgets Collapsed by Default on Blog

Please go to Appearance >> Customize >> Custom CSS and JS.

and then inside Custom JS please add the code below and save.

$(".default-widget .default-widget-panel").each(function(index) {
            if($( this ).hasClass( "in" )){
               $( this ).removeClass('in'); 
            }
        });

This will have the sidebar items collapsed on page load.

Thank you