1
1
mirror of https://github.com/primer/css.git synced 2024-12-20 04:32:21 +03:00
css/modules/primer-page-sections/lib/page-section.scss
2017-06-29 12:49:16 -07:00

19 lines
382 B
SCSS

// Styles for page sections
.page-section {
padding: $spacer-5 0;
margin-top: 0;
@include breakpoint(md) {
padding: $spacer-6 + $spacer-3 0;
}
}
// Adds a little extra headroom for sections linked to via in-page anchor links
.page-section-jumplink:target {
padding-top: ($spacer-6 * 2) + $spacer-5;
@include breakpoint(md) {
padding-top: $spacer-6 * 2;
}
}