Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,22 @@ html body .VPSidebar > div {
display: none !important;
}

/* Keep divider aligned with the actual aside column */
/* Keep divider aligned with the aside and reach the header */
@media (min-width: 960px) {
.VPDoc.has-aside .aside {
border-left: 1px solid var(--vp-c-divider);
.VPDoc.has-aside .aside::before {
content: '';
position: absolute;
top: calc(-1 * (var(--vp-doc-top-height, 0px) + 48px));
bottom: 0;
left: 0;
width: 1px;
background: var(--vp-c-divider);
pointer-events: none;
}

.VPDoc.has-aside .aside.left-aside::before {
left: auto;
right: 0;
}
}

Expand Down