diff options
| author | 2026-05-21 15:19:14 +0700 | |
|---|---|---|
| committer | 2026-05-21 15:19:14 +0700 | |
| commit | a546b51f23de754a697370b1741179fbb8f377ed (patch) | |
| tree | 1b8f50de1fcc040f977fbfc5c014c70e9e7e549d /static | |
| parent | 8df72001ed7ded4e31d24c39b829bb99707289f9 (diff) | |
| parent | 2422f2a092f90cb29fc22ef473f69389a27d9d25 (diff) | |
| download | web-a546b51f23de754a697370b1741179fbb8f377ed.tar.gz web-a546b51f23de754a697370b1741179fbb8f377ed.zip | |
v0.17.1 (#43)v0.17.1
- fix: stars & camel frames getting out of screen
- fix: opening glightbox doesn't shrink a page now
Diffstat (limited to 'static')
| -rw-r--r-- | static/input.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/static/input.css b/static/input.css index 0dfb137..e0c5c81 100644 --- a/static/input.css +++ b/static/input.css @@ -87,6 +87,10 @@ body { scrollbar-color: var(--color-background-light) var(--color-main-soft); } +body.glightbox-open { + height: 100dvh; +} + @media screen and (min-width: 900px) and (min-height: 900px) { html { font-size: clamp(16px, min(1dvw, 1dvh) + 7px, 20px); @@ -900,8 +904,8 @@ form.crossable.htmx-request input { } .ram-frame { - width: 20vmin; - height: 20vmin; + width: 8rem; + height: 8rem; user-select: none; -webkit-user-select: none; } |