From 9bfe4724689eab1e9925eb9db0f7b9ace0f79356 Mon Sep 17 00:00:00 2001 From: ElementalAlchemist Date: Mon, 11 Nov 2024 20:15:45 -0600 Subject: [PATCH] Bound max video player size --- thrimbletrimmer/src/globalStyle.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/thrimbletrimmer/src/globalStyle.scss b/thrimbletrimmer/src/globalStyle.scss index 35998a3..8f92aa7 100644 --- a/thrimbletrimmer/src/globalStyle.scss +++ b/thrimbletrimmer/src/globalStyle.scss @@ -1,3 +1,9 @@ .hidden { display: none; } + +media-player, +video { + max-width: 100%; + max-height: 50vh; +}