From 7f7be814fc27dc02ad152a7c2230d341d3150cfc Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sun, 20 Nov 2022 10:28:23 +0100 Subject: [PATCH] Limit maximum width of images in markdown preview --- plugs/markdown/assets/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugs/markdown/assets/styles.css b/plugs/markdown/assets/styles.css index 4f7fdb4..1b11208 100644 --- a/plugs/markdown/assets/styles.css +++ b/plugs/markdown/assets/styles.css @@ -8,6 +8,10 @@ body { padding-right: 20px; } +img { + max-width: 100%; +} + table.front-matter { border: 1px solid #555; font-size: 75%;