We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3880d1d commit 9d1a69bCopy full SHA for 9d1a69b
src/starlight-overrides/PageFrame.astro
@@ -55,13 +55,13 @@ const { hasSidebar } = Astro.locals.starlightRoute;
55
.sidebar-pane {
56
visibility: var(--sl-sidebar-visibility, hidden);
57
position: fixed;
58
- height: 100vh;
+ height: calc(100dvh - var(--sl-nav-height));
59
z-index: var(--sl-z-index-menu);
60
- inset-block: var(--sl-nav-height) 0;
61
inset-inline-start: 0;
62
width: 100%;
63
background-color: var(--sl-color-black);
64
overflow-y: auto;
+ top: var(--sl-nav-height);
65
}
66
67
:global([aria-expanded="true"]) ~ .sidebar-pane {
0 commit comments