fix styles

This commit is contained in:
Barrett Ruth 2025-11-28 02:16:41 -05:00
parent c7e44fc8aa
commit d2d204130a
5 changed files with 88 additions and 20 deletions

View file

@ -1,3 +1,28 @@
body:has(.post-container) {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
}
body:has(.post-container) header {
flex-shrink: 0;
position: sticky;
top: 0;
z-index: 100;
background: var(--background);
}
body:has(.post-container) .main {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
}
body:has(.post-container) footer {
flex-shrink: 0;
}
li {
margin: 5px 0;
}