From 64f0c429136b74f66db0b8c53b2525d27d02888b Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 11 Mar 2023 08:28:39 +0200 Subject: [PATCH] reduce video max height to 80 of screen height --- files/assets/css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/assets/css/main.css b/files/assets/css/main.css index 8205432a5..0917f765c 100644 --- a/files/assets/css/main.css +++ b/files/assets/css/main.css @@ -6917,13 +6917,13 @@ div.markdown { resize: both; display: inline-block; overflow: auto; - max-height: 100vh !important; + max-height: 80vh !important; max-width: 100vw !important; } .resizable > video { height: 99% !important; width: 99% !important; - max-height: 100vh !important; + max-height: 80vh !important; max-width: 100vw !important; margin: 0 !important; }