Merge remote-tracking branch 'origin/pull/536'

This commit is contained in:
Matthew Esposito 2023-12-26 15:20:21 -05:00
commit 0eb5e18cef
No known key found for this signature in database
6 changed files with 103 additions and 32 deletions

View file

@ -100,6 +100,9 @@ pre, form, fieldset, table, th, td, select, input {
body {
background: var(--background);
font-size: 15px;
}
body.fixed_navbar {
padding-top: 60px;
padding-bottom: var(--footer-height);
min-height: calc(100vh - 60px);
@ -122,8 +125,12 @@ nav {
z-index: 2;
top: 0;
padding: 5px 15px;
margin-bottom: 10px;
min-height: 40px;
width: calc(100% - 30px);
}
nav.fixed_navbar {
position: fixed;
}
@ -1566,10 +1573,7 @@ td, th {
/* Mobile */
@media screen and (max-width: 800px) {
body {
padding-top: 120px;
padding-bottom: var(--footer-height);
}
body.fixed_navbar { padding-top: 120px }
main {
flex-direction: column-reverse;
@ -1612,10 +1616,8 @@ td, th {
}
@media screen and (max-width: 480px) {
body {
padding-top: 100px;
padding-bottom: var(--footer-height);
}
body.fixed_navbar { padding-top: 100px; }
#version { display: none; }
.post {
grid-template: "post_header post_header post_thumbnail" auto