From 5bfbedf0615ba289aa12dd15f36512e006175991 Mon Sep 17 00:00:00 2001 From: Robert Young Date: Tue, 5 Aug 2025 16:21:47 +1200 Subject: [PATCH] Restrict .imageblock img to 100% width of parent Why: Some SVG images in the documentation are enormous Signed-off-by: Robert Young --- _sass/kroxylicious.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_sass/kroxylicious.scss b/_sass/kroxylicious.scss index a0a62ab5..b8af7cdc 100644 --- a/_sass/kroxylicious.scss +++ b/_sass/kroxylicious.scss @@ -306,3 +306,7 @@ b.conum * { pointer-events: none; /* Clicks will "pass through" the watermark */ } + +.imageblock img { + max-width: 100%; +}