diff options
| author | 2025-08-13 12:05:30 +0700 | |
|---|---|---|
| committer | 2025-08-13 12:05:30 +0700 | |
| commit | d15630a014e31835f66b0b50d9cc1e59ee4f203c (patch) | |
| tree | 1f5866c93956ec08b4121e995c4c68eaf4c90416 /static/input.css | |
| parent | 74fa865d765a5b1813e1fd3b71d0e753998ae1eb (diff) | |
| download | web-d15630a014e31835f66b0b50d9cc1e59ee4f203c.tar.gz web-d15630a014e31835f66b0b50d9cc1e59ee4f203c.zip | |
fix: mobile page layout overflowingv0.5.6
fix: hide sidebar/topbar on gallery maximized
Diffstat (limited to 'static/input.css')
| -rw-r--r-- | static/input.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/static/input.css b/static/input.css index 69cfa91..aef2d8f 100644 --- a/static/input.css +++ b/static/input.css @@ -154,10 +154,6 @@ background-size: calc(var(--squares-and-triangles-background-width-coef) * 1vw) calc(var(--squares-and-triangles-background-height-coef) * 1vw); } -body:has(.lg-container:not([class~="lg-inline"])) .desktop-sidebar-custom { - display: none !important; -} - .mobile-topbar-custom { width: 90vw; height: 8%; @@ -165,7 +161,7 @@ body:has(.lg-container:not([class~="lg-inline"])) .desktop-sidebar-custom { margin-left: 5vw; } -body:has(.lg-container:not([class~="lg-inline"])) .mobile-topbar-custom { +body:has(.lg-container:not([class~="lg-inline"])) #sidebar { display: none !important; } @@ -444,6 +440,10 @@ body:has(.lg-container:not([class~="lg-inline"])) .mobile-topbar-custom { max-height: 80%; } + .ar-lt-0\.8\:max-h-\[calc\(100\%-25vh\)\] { + max-height: calc(100% - 25vh); + } + .ar-lt-0\.8\:text-\[5vh\] { font-size: 5vh; } |