From 1b7d4b61e6b7b6f2f55afb8a43b888762003603e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Mar 2026 19:58:16 +0000 Subject: [PATCH 1/3] Initial plan From 49698534082646a06492e46a0f8dbd725009fcf7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Mar 2026 20:03:39 +0000 Subject: [PATCH 2/3] Add margin-bottom to blog post images for spacing below hero images Co-authored-by: grst <7051479+grst@users.noreply.github.com> Agent-Logs-Url: https://github.com/scverse/scverse.github.io/sessions/480a99aa-b181-45ee-8179-85dc01e7a35a --- assets/main.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/main.scss b/assets/main.scss index 88e07da..fca582c 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -940,6 +940,9 @@ body { margin: 3rem 0; font-size: 1.1rem; text-wrap: pretty; + img { + margin-bottom: 1.5rem; + } span.backticked { font-size: 1.2rem; line-height: 1.1rem; From c05449a5e3ddd42e08ca0cb9538b9f6a738d7e2f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Mar 2026 20:10:03 +0000 Subject: [PATCH 3/3] Scope margin-bottom to direct child images only, preserving figure caption spacing Co-authored-by: grst <7051479+grst@users.noreply.github.com> Agent-Logs-Url: https://github.com/scverse/scverse.github.io/sessions/3f114782-3b08-48a7-8bb1-5f5984a250f6 --- assets/main.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/main.scss b/assets/main.scss index fca582c..ac7594b 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -940,7 +940,8 @@ body { margin: 3rem 0; font-size: 1.1rem; text-wrap: pretty; - img { + > img, + > p > img { margin-bottom: 1.5rem; } span.backticked {