ensured footer was pinned to bottom of page for new-ish billboard.html & room_scroll.html pages; introduced mobile landscape layout, incl. leftward 'navbar', rightward 'footer'; ensured z-index primacy of #id_kit_btn, which would here appear behind the kit bar when open; other fixes introduced by problems stemming largely from new landscape styling
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-23 01:06:14 -04:00
parent 2fd3ec9ab2
commit eecb6c2be6
11 changed files with 208 additions and 40 deletions

View File

@@ -2,7 +2,14 @@
position: fixed;
bottom: 0.5rem;
right: 0.5rem;
z-index: 205;
@media (orientation: landscape) and (max-width: 1023px) {
right: calc(4rem + 0.5rem);
bottom: 0.75rem;
top: auto;
}
z-index: 305;
font-size: 1.75rem;
cursor: pointer;
color: rgba(var(--secUser), 1);
@@ -37,6 +44,10 @@
background: rgba(var(--priUser), 0.97);
z-index: 204;
overflow: hidden;
@media (orientation: landscape) and (max-width: 1023px) {
z-index: 301; // above navbar sidebar (z-index: 300) in landscape
}
// Closed state
max-height: 0;
visibility: hidden;