diff --git a/resources/views/videos/types/match.blade.php b/resources/views/videos/types/match.blade.php index 1aae69d..d219f9c 100644 --- a/resources/views/videos/types/match.blade.php +++ b/resources/views/videos/types/match.blade.php @@ -1984,7 +1984,10 @@ .ytp-wrap.ytp-fullscreen .events-sidebar { display: flex !important; position: absolute; top: 0; right: 0; bottom: 0; left: auto; - width: var(--hl-drawer-w); + /* !important is required: on a <=991px landscape phone the mobile sheet + rule sets width:100% !important, which would otherwise stretch the + drawer across the whole video. */ + width: var(--hl-drawer-w) !important; height: auto !important; max-height: none !important; margin: 0 !important; border-radius: 0 !important; background: linear-gradient(to left, rgba(10, 10, 13, 0.42), rgba(10, 10, 13, 0.14));