mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-09 01:35:26 +00:00
18 lines
469 B
SCSS
18 lines
469 B
SCSS
![]() |
.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;
|
||
|
}
|