In CartFlows 1.9.0 we introduced Modern Checkout templates so on mobile devices, the order summary will be hidden by default and will be collapsed upon click.
If you would like to show the order summary open on mobile devices, you can use the below filter to do so:
add_filter( 'cartflows_show_mobile_order_summary_collapsed', '__return_false' );
Note: Add the above filter to your child theme’s functions.php, here’s an article to help you Add Custom code.