Merge pull request #5390 from mabashian/4634-group-sync-spacing

Fix spacing between group schedule and breadcrumb bar
This commit is contained in:
Michael Abashian 2017-02-16 09:58:01 -05:00 committed by GitHub
commit d6869a25e8
3 changed files with 4 additions and 4 deletions

View File

@ -103,7 +103,7 @@ angular.module('inventory', [
mode: 'edit'
});
html = generateList.wrapPanel(html);
return generateList.insertFormView() + html;
return "<div class='InventoryManage-container'>" + generateList.insertFormView() + html + "</div>";
},
controller: 'schedulerListController'
}

View File

@ -12,7 +12,7 @@
.InventoryManageBreadCrumbs{
position: relative;
height: auto;
top: -40px;
top: -36px;
.BreadCrumb-list{
margin-bottom: 0px;
}

View File

@ -1,3 +1,3 @@
.InventoryManage-container{
margin-top: -40px;
}
margin-top: -36px;
}