From 60f2637620a36ef73b6496bd7460a7a57f5d4b74 Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Thu, 6 Mar 2025 07:01:22 -0800 Subject: [PATCH 1/2] fix: Constraint images to the parent div --- assets/css/v2/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index 5cca11b..506d2c5 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -1077,6 +1077,14 @@ blockquote p:last-child { padding: 0; } +/* Images */ +.figure-bitmap { + border: solid 2px #42932d; + margin-bottom: 10px; + display: inline-block; + max-width: 100%; +} + /* Logo */ .f5-logo-footer { height: 32px; From ec4d0081e0839aaa58569865bc7fbbc80ea73d87 Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Wed, 12 Mar 2025 03:43:23 -0700 Subject: [PATCH 2/2] fix: Removed border on image + removed margins on figure tags --- assets/css/v2/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index 506d2c5..199445c 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -1078,9 +1078,12 @@ blockquote p:last-child { } /* Images */ +figure { + margin: 0; +} + .figure-bitmap { - border: solid 2px #42932d; - margin-bottom: 10px; + margin-bottom: 0.625rem; display: inline-block; max-width: 100%; }