fixes breadcrumb margin offset on page transition

This commit is contained in:
Seyi Adebajo 2018-07-12 17:25:44 -07:00
parent a597a7e185
commit 801e9ee846

View File

@ -1,5 +1,9 @@
.data-systems-container {
margin-top: item-spacing(5);
// additional offset to compensate for browser lack of respect for the margin-top value on the breadcrumbs component
// margin-top value overlaps container padding
// not an ideal solution
$breadcrumbs-margin-offset: 5px;
margin-top: item-spacing(5) + $breadcrumbs-margin-offset;
}
.data-systems {