18 lines
469 B
SCSS
Raw Normal View History

2019-08-31 20:51:14 -07:00
.page-section-container {
background-color: set-color(white, base);
}
/// Styles that apply to the layout for a page with two columns sidebar and content style
.wh-sidebar,
.wh-main-content {
margin-top: item-spacing(5);
}
// breadcrumbs component has a fixed layout, offset its height to prevent overlapping sibling content
.bread-crumb-spacer {
$application-bread-crumb-height: item-spacing(6);
height: $application-bread-crumb-height;
display: block;
}