From a5757b94e8ed492d454b9e427b7f45824cc56c5c Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Sat, 22 Oct 2022 12:16:59 +0300 Subject: [PATCH] fix: missing video controls on mobile (#2180) --- frontend/src/css/mobile.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/css/mobile.css b/frontend/src/css/mobile.css index ef4b173c..77d9e55c 100644 --- a/frontend/src/css/mobile.css +++ b/frontend/src/css/mobile.css @@ -2,6 +2,10 @@ nav { width: 10em } + /* Mobile Only fix div hidden by bottom navigation bar of mobile browser when using height: 100vh */ + #previewer .preview { + height: calc(100% - 4em) !important; + } } @media (max-width: 1024px) {