diff --git a/resources/views/videos/types/match.blade.php b/resources/views/videos/types/match.blade.php index 37560b4..b434f3f 100644 --- a/resources/views/videos/types/match.blade.php +++ b/resources/views/videos/types/match.blade.php @@ -1937,10 +1937,16 @@ body.hl-sheet-open .yt-header { transform: translateY(-100%); } #main.yt-main { transition: top 0.3s ease; } body.hl-sheet-open #main.yt-main { top: 0 !important; } + + /* Hide the bottom nav too so the sheet owns the whole lower area. + !important overrides the base `.yt-bottom-nav { transform: none !important }`. */ + .yt-bottom-nav { transition: transform 0.3s ease; } + body.hl-sheet-open .yt-bottom-nav { transform: translateY(100%) !important; } } @media (max-width: 991px) and (prefers-reduced-motion: reduce) { .events-sidebar, .yt-header, + .yt-bottom-nav, #main.yt-main { transition: none; } }