From ab440a3d7b94405f423776ec8786c643fb2f9136 Mon Sep 17 00:00:00 2001 From: city-unit <140349364+city-unit@users.noreply.github.com> Date: Wed, 30 Aug 2023 22:54:34 -0400 Subject: [PATCH] Uhh, mobile support --- public/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/public/style.css b/public/style.css index 9f750d875..f04607ffc 100644 --- a/public/style.css +++ b/public/style.css @@ -3584,4 +3584,20 @@ a { width: 100%; height: 100%; object-fit: cover; +} + +/* Jank mobile support for gallery and future draggables */ +@media screen and (max-width: 1000px) { + #gallery { + display: block; + width: 100vw; + height: 100vh; + z-index: 9999; + } + .draggable { + display: block; + width: 100vw; + height: 100vh; + z-index: 9999; + } } \ No newline at end of file