30 lines
805 B
SCSS
30 lines
805 B
SCSS
#docfy-demo-preview-main-nav-vertical {
|
|
.main-nav-vertical {
|
|
@extend %main-nav-vertical;
|
|
}
|
|
.main-nav-vertical li.hoisted {
|
|
@extend %main-nav-vertical-hoisted;
|
|
}
|
|
.main-nav-vertical .with-intent > * {
|
|
@extend %main-nav-vertical-action-intent;
|
|
}
|
|
.main-nav-vertical .custom-active > * {
|
|
@extend %main-nav-vertical-action-active;
|
|
}
|
|
.wrapper {
|
|
/* a transform is required to mark this element as the containing block */
|
|
/* for hoisting, otherwise the viewport is the containing block */
|
|
transform: translate(0, 0);
|
|
background-color: var(--gray-600);
|
|
padding-top: 64px;
|
|
}
|
|
// TODO: Reduce the need for these debug overrides
|
|
.main-nav-vertical {
|
|
position: static;
|
|
height: auto;
|
|
}
|
|
.main-nav-vertical ul {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
}
|