Fix spacing between group schedule and breadcrumb bar

This commit is contained in:
Michael Abashian 2017-02-15 16:25:25 -05:00
parent 4097ce6d74
commit deb9f5389f
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;
}