/*
This fixes an issue with breadcrumbs on ModelAdmin inspect views.
The negative margin added here is the same that wagtail adds on the breadcrumbs that show on page-model edit views.
*/

header.tab-merged .breadcrumb {
    padding-left: 50px;
    padding-right: 50px;
    margin-left: -50px;
    margin-right: -50px;
}
