From 10dbd07cb940425140dcf761202bf6f26f65ed10 Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Sat, 7 Mar 2026 15:34:32 -0500 Subject: [PATCH] fixed some breakpoint styling that prevented scrolling on mobile landscape windows --- src/static_src/scss/_dashboard.scss | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/static_src/scss/_dashboard.scss b/src/static_src/scss/_dashboard.scss index 514ad88..3fbfa47 100644 --- a/src/static_src/scss/_dashboard.scss +++ b/src/static_src/scss/_dashboard.scss @@ -15,6 +15,7 @@ body.page-dashboard { .row { flex-shrink: 0; + margin-bottom: -1rem; } } @@ -200,7 +201,7 @@ body.page-dashboard { @media (max-width: 550px) { #id_dash_content { - min-width: 380px; + min-width: 0; 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) { body.page-dashboard { - height: auto; - overflow-y: auto; - .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; - } } \ No newline at end of file