Change font size in products listing pages in woocommerce

Another option would be to use the current_screen hook

add_action( 'current_screen', 'my_admin_listing_custom_styles' );
function my_admin_listing_custom_styles() {
    $current_screen = get_current_screen();
    if( 'edit' == $current_screen->base && 'product' == $current_screen->post_type) {
        // Run some code, only on the admin products listing page for e.x add css style
        ?>
        <style type="text/css">
        a.row-title {font-size: 18px !important;}
        </style>
        <?php
    }
}