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 (max-height: 500px) { @media (min-width: 738px) {
body.page-dashboard { #id_dash_content {
height: auto; min-width: 666px;
overflow-y: auto; overflow: hidden;
}
.container { }
overflow: visible;
} @media (max-height: 500px) {
} body.page-dashboard {
.container {
#id_dash_content, .row {
#id_applets_container { padding: 0.25rem 0;
overflow: visible; .col-lg-6 h2 {
flex: none; margin-bottom: 0.5rem;
}
}
}
} }
} }