1
0
mirror of synced 2025-12-23 11:54:18 -05:00
Files
docs/components/page-header/Header.module.scss
2022-07-29 16:06:15 -07:00

23 lines
499 B
SCSS

@import "@primer/css/support/index.scss";
.header {
display: unset;
}
// Need children of portal root to be higher z-index to show dropdown
.portalRoot * {
z-index: 3 !important;
}
// Make the top-level window the scroll window by using the entire screen height to display
.fullVerticalScroll {
max-height: 100vh;
overflow-y: scroll;
// When nav dropdown shifts to large layout, use overflow defaults
@include breakpoint(lg) {
max-height: inherit;
overflow-y: inherit;
}
}