From 45d7b0531adee5a6f9f429321c63ea34708b6b26 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Sat, 7 Dec 2019 14:11:16 +0000 Subject: [PATCH] Fix video element overflowing on chrome. --- client/css/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/css/style.css b/client/css/style.css index 17d09b14..8eb82fc3 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1580,8 +1580,12 @@ background on hover (unless active) */ max-width: 100%; } -#chat video { +#chat .toggle-type-video { max-width: 640px; +} + +#chat video { + max-width: 100%; max-height: 240px; }