Skip to content
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

[#12265] Modify minimum page height to factor in footer height #12406

Merged
merged 8 commits into from
Apr 27, 2023
14 changes: 13 additions & 1 deletion src/web/app/page.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,22 @@ nav {

.main-content {
margin-top: 50px;
min-height: calc(100vh - 80px);
min-height: calc(100vh - 102px);
padding: 20px 70px;
}

@media (max-width: 575px) {
.main-content {
min-height: calc(100vh - 144px);
}
}

@media (min-width: 576px) and (max-width: 589px) {
.main-content {
min-height: calc(100vh - 123px);
}
}

.footer {
padding: 5px 70px;
color: rgba(255, 255, 255, .75);
Expand Down