From 5ee26a8f644dad680178b235ac3f1fbdfa453fcb Mon Sep 17 00:00:00 2001 From: ElementalAlchemist Date: Thu, 14 Nov 2024 19:51:59 -0600 Subject: [PATCH] Fix video player height --- thrimbletrimmer/src/common/video.scss | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/thrimbletrimmer/src/common/video.scss b/thrimbletrimmer/src/common/video.scss index 594fdc4..33f6883 100644 --- a/thrimbletrimmer/src/common/video.scss +++ b/thrimbletrimmer/src/common/video.scss @@ -1,15 +1,14 @@ -// Used to make the controls appear below the video player media-player { flex-direction: column; -} - -media-provider, -media-captions, -video { max-width: 100%; max-height: 50vh; } +// This level of specificity is required to override player CSS +#root > media-player > media-provider { + align-items: normal; +} + // Used to make the controls appear below the video player media-player:not([data-fullscreen]) media-controls { position: relative;