Skip to content

Commit

Permalink
Merge pull request #93 from buildkite/docs-public-pr-3000
Browse files Browse the repository at this point in the history
fix(tablet): set rows grid to 0 if it's empty (e.g. no toc section)
  • Loading branch information
gilesgas authored Oct 28, 2024
2 parents bae0f05 + 47bf59f commit 2ee135b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/frontend/css/components/_page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $lg-screen-margin-top: map-get($header-height, "one-row");

.Page {
display: grid;
grid-template-rows: auto;
grid-template-rows: minmax(0, auto);
grid-template-columns: 1fr;
grid-template-areas:
"sidebar"
Expand Down

0 comments on commit 2ee135b

Please sign in to comment.