From 5ca0b1f61036434f264ca98c90b304623a09695c Mon Sep 17 00:00:00 2001 From: isUnknown Date: Wed, 22 Apr 2026 13:11:48 +0200 Subject: [PATCH] article > video block : full width --- src/styles/blocks/video.css | 3 +++ src/styles/index.css | 1 + 2 files changed, 4 insertions(+) create mode 100644 src/styles/blocks/video.css diff --git a/src/styles/blocks/video.css b/src/styles/blocks/video.css new file mode 100644 index 0000000..9082ac5 --- /dev/null +++ b/src/styles/blocks/video.css @@ -0,0 +1,3 @@ +.article-body figure iframe { + width: 100%; +} diff --git a/src/styles/index.css b/src/styles/index.css index 7c0c395..1561365 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -17,5 +17,6 @@ @import "./blocks/list.css"; @import "./blocks/quote.css"; @import "./blocks/image.css"; +@import "./blocks/video.css"; @import "./blocks/game.css"; @import "./blocks/white-paper.css";