From db746079223aed14c74fde9b72efa43a9ce26038 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Wed, 16 Aug 2023 11:32:42 +0400 Subject: [PATCH] Bugfix: width for media & iframes --- static/common.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/common.css b/static/common.css index 1f819e4..4d4aff5 100644 --- a/static/common.css +++ b/static/common.css @@ -55,3 +55,12 @@ table { max-width: 100%; overflow-x: auto; } + +img, picture, video { + max-width: 100%; + height: auto; +} + +frame, iframe { + max-width: 100%; +}