Add custom css to dashboard via functions.php
//////////////////////
// DASHBOARD STYLES //
//////////////////////
function dashboard_custom_css() {
wp_enqueue_style('dashboard-style', get_stylesheet_directory_uri() . '/css/dashboard.css');
}
add_action('admin_head', 'dashboard_custom_css');