fixed some breakpoint styling that prevented scrolling on mobile landscape windows
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-07 15:34:32 -05:00
parent 314da3e246
commit 10dbd07cb9

View File

@@ -15,6 +15,7 @@ body.page-dashboard {
.row { .row {
flex-shrink: 0; flex-shrink: 0;
margin-bottom: -1rem;
} }
} }
@@ -200,7 +201,7 @@ body.page-dashboard {
@media (max-width: 550px) { @media (max-width: 550px) {
#id_dash_content { #id_dash_content {
min-width: 380px; min-width: 0;
overflow: hidden; overflow: hidden;
} }
@@ -211,19 +212,22 @@ body.page-dashboard {
} }
} }
@media (min-width: 738px) {
#id_dash_content {
min-width: 666px;
overflow: hidden;
}
}
@media (max-height: 500px) { @media (max-height: 500px) {
body.page-dashboard { body.page-dashboard {
height: auto;
overflow-y: auto;
.container { .container {
overflow: visible; .row {
padding: 0.25rem 0;
.col-lg-6 h2 {
margin-bottom: 0.5rem;
}
}
} }
} }
#id_dash_content,
#id_applets_container {
overflow: visible;
flex: none;
}
} }