1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/components/release-notes/PatchNotes.module.scss
Kevin Heis f798da7b7a A11y simpler release notes sidebar (#39392)
Co-authored-by: Peter Bengtsson <peterbe@github.com>
2023-07-24 14:45:20 +00:00

23 lines
401 B
SCSS

@import "@primer/css/support/index.scss";
.sectionHeading {
scroll-margin-top: 105px !important; // 88 + 8 + 8 + 1
@include breakpoint(xl) {
scroll-margin-top: 65px !important; // 48 + 8 + 8 + 1
}
}
.aside {
@include breakpoint(md) {
width: 8rem;
height: calc(100vh - 105px);
top: 105px;
}
@include breakpoint(xl) {
height: calc(100vh - 65px);
top: 65px;
}
}