Skip to content
Open
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
9 changes: 7 additions & 2 deletions assets/style/sections/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,19 @@ input:focus::placeholder {
transition: 0.3s;
gap: 0;
top: 100%;
height: 2px;
max-height: 0;
overflow: hidden;
opacity: 0;
}

.header-nav.active {
opacity: 1;
height: 21rem;
/* max-height rather than a fixed height: the drawer holds the nav links,
the search box and the Get Started button, and a hard 21rem clipped the
last two out of view with no way to scroll to them. Sizing to content
keeps them reachable however many nav items there are. */
max-height: 100vh;
overflow-y: auto;
}

.nav-mobile {
Expand Down