From a7e2a9b886294941b1bf359f8ad45fcb935ff68e Mon Sep 17 00:00:00 2001 From: isUnknown Date: Wed, 22 Apr 2026 13:18:41 +0200 Subject: [PATCH] article > video block : set responsive height - closes #67 --- src/styles/blocks/video.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/styles/blocks/video.css b/src/styles/blocks/video.css index 9082ac5..54f1684 100644 --- a/src/styles/blocks/video.css +++ b/src/styles/blocks/video.css @@ -1,3 +1,10 @@ .article-body figure iframe { width: 100%; + height: 22.5vw; +} +@media screen and (max-width: 700px) { + .article-body figure iframe { + width: 100%; + height: 53vw; + } }