From 746fe982c2e99e3d8bf4d27aa5e50a7f9c74b1e3 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 13 Nov 2022 17:49:29 -0600 Subject: [PATCH] Force videos to be the full width of the available HTML. Fixes #3341 --- Shared/Article Rendering/stylesheet.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Shared/Article Rendering/stylesheet.css b/Shared/Article Rendering/stylesheet.css index a1059a182..902be2fa6 100644 --- a/Shared/Article Rendering/stylesheet.css +++ b/Shared/Article Rendering/stylesheet.css @@ -219,6 +219,10 @@ img, figure, video, div, object { margin: 0 auto; } +video { + width: 100% !important; +} + iframe { max-width: 100%; margin: 0 auto;