You could overwrite it with CSS using !important, or just modify the CSS that comes with the plugin.
Hello, i’ve just resolved.
in your file in: /wc-vendors/classes/front/dashboard/class-vendor-dashboard.php
on the line 184 i found
wp_enqueue_style( 'wcv_frontend_style', wcv_assets_url . 'css/wcv-frontend.css' );
but without wp_register_style. So, to deregister style i’ve made an action, and it work. But for a better “Coding Standards” you need first register style.
/**
* Remove default style css
*/
add_action('wp_footer', 'remove_wc_vendors_style');
function remove_wc_vendors_style() {
wp_dequeue_style('wcv_frontend_style');
}