Skip to content

Commit a09e6b3

Browse files
author
cjs
committed
fix: unset min-height:100vh on .page wrapper to eliminate footer whitespace
1 parent 0eeddc3 commit a09e6b3

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/styles/custom.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
display: none !important;
7979
}
8080

81-
/* Remove ALL bottom padding/margin on splash homepage */
81+
/* Remove ALL bottom padding/margin/min-height on splash homepage */
8282
main:has(.botdrop-footer),
8383
main:has(.botdrop-footer) .content-panel,
8484
main:has(.botdrop-footer) .sl-container,
@@ -88,3 +88,8 @@ main:has(.botdrop-footer) .lg\:sl-flex {
8888
padding-bottom: 0 !important;
8989
margin-bottom: 0 !important;
9090
}
91+
92+
/* Override Starlight page wrapper min-height to prevent extra space below footer */
93+
.page:has(.botdrop-footer) {
94+
min-height: unset !important;
95+
}

0 commit comments

Comments
 (0)