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
27 changes: 27 additions & 0 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -1251,16 +1251,43 @@ a:hover {
background-color: var(--ifm-background-color);
border-right: 1px solid var(--sc-border);
z-index: 100; /* Ensure it's above other elements */
height: 100%;
display: flex;
flex-direction: column;
}

.navbar-sidebar__items {
padding: 1rem;
flex: 1;
overflow-y: auto;
height: auto;
}

/* Ensure the primary items container shows all items */
.navbar-sidebar__items--show-secondary {
display: none;
}

.navbar-sidebar__items:not(.navbar-sidebar__items--show-secondary) {
display: flex;
flex-direction: column;
}

.navbar-sidebar__item {
padding: 0.5rem 0;
}

/* Ensure menu items display properly */
.navbar-sidebar .menu {
padding: 0;
}

.navbar-sidebar .menu__list {
display: flex;
flex-direction: column;
gap: 0.25rem;
}

.navbar-sidebar .menu__link {
color: var(--ifm-font-color-base);
font-family: var(--ifm-font-family-monospace);
Expand Down