Be slightly smarter with options, fix footer being 30px above or below bottom on short posts

This commit is contained in:
Butter Cat 2024-01-06 16:53:58 -05:00 committed by GitHub
parent b578b717d7
commit a445759a69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,16 +114,17 @@ pre, form, fieldset, table, th, td, select, input {
body {
background: var(--background);
font-size: 15px;
}
body.card, body.fixed_navbar {
padding-bottom: var(--footer-height);
min-height: calc(100vh - 60px);
font-size: 15px;
position: relative;
}
body.card {
min-height: calc(100vh - 30px);
}
body.fixed_navbar {
min-height: calc(100vh - 90px);
padding-top: 60px;
}