Chrome/ WP admin menu issues

If you’re using WP on Chrome you’ll notice the admin menu messed up.
This is a Chrome issue, not WordPress.

To fix, add this to your functions file:

function pands_admin_menu_fix() {
    echo '<style>
    #adminmenu { transform: translateZ(0); }
    </style>';
}
add_action('admin_head', 'pands_admin_menu_fix');