From d0f0201a855a81f7e953bf5a59e64079ca813d62 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 30 Aug 2023 11:53:55 +0300 Subject: [PATCH] video width fix on mobile --- files/assets/css/main.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/files/assets/css/main.css b/files/assets/css/main.css index bdad1de3c..d52401371 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -7082,6 +7082,17 @@ div.markdown { max-width: 85vw !important; } +@media (max-width: 768px) { + .resizable { + max-width: 100vw !important; + } + .resizable > * { + height: 100% !important; + width: 100% !important; + max-width: 100vw !important; + } +} + .user-signature video { max-height: min(var(--signature-max-height),50vh) !important; }