better handling of nav bar sizing

This commit is contained in:
Michael Freno
2025-12-18 00:24:16 -05:00
parent 4b64f50670
commit 14da7f9912
6 changed files with 268 additions and 180 deletions

View File

@@ -440,3 +440,28 @@ input[type="checkbox"]:checked::before {
transform-origin: bottom left;
background-color: var(--color-surface2);
}
.image-overlay::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255, 255, 255, 0.1);
}
.iframe-wrapper {
position: relative;
min-height: 300px;
width: 100%;
min-width: 350px;
max-width: 100% !important;
background-color: black;
}
.iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}