Skip to content

Header for content grid expanding #226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2025
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
4 changes: 2 additions & 2 deletions assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ nav {

.text-content {
grid-template-columns: var(--grid-content) var(--grid-side-callout);
grid-template-rows: 70px auto;
grid-template-rows: 70px max-content;
column-gap: var(--grid-column-gutter);
}

Expand Down Expand Up @@ -483,7 +483,7 @@ nav {

/* Handles different flow-gap of list page */
.list-page.text-content {
grid-template-rows: calc(70px + var(--flow-gap)) auto;
grid-template-rows: calc(70px + var(--flow-gap)) max-content;
}

.api {
Expand Down
Loading