I added custom icon for custom post type.. and that was not aligned so i added or hooked custom style to dashboard through this function.
Add this code to functions.php file of your theme..
// custom css for admin area
add_action('admin_head', 'nst_post_style');
function nst_post_style() {
echo '<style>
#adminmenu .menu-icon-nst_testi img ,
#adminmenu .menu-icon-nst_service img{
padding-top: 6px;
}
</style>';
}
You can do your style for dashboard through that function. 🙂