From da86dd3b049d7375975d33c3c9719b2e01de0383 Mon Sep 17 00:00:00 2001 From: Jason Zinn Date: Mon, 19 Jan 2026 16:17:23 -0600 Subject: [PATCH 1/2] MOOSE-335: Remove default margin on spacer block Added explicit core/spacer block styles in theme.json to set margin-top and margin-bottom to 0, ensuring spacer blocks only add the height specified by the user. --- wp-content/themes/core/theme.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wp-content/themes/core/theme.json b/wp-content/themes/core/theme.json index 0c80cf82..8a9542fa 100644 --- a/wp-content/themes/core/theme.json +++ b/wp-content/themes/core/theme.json @@ -629,6 +629,14 @@ } } }, + "core/spacer": { + "spacing": { + "margin": { + "top": "0", + "bottom": "0" + } + } + }, "core/table": { "spacing": { "margin": { From 16df7c33c6f241da9a837d1ed1ce850f34197abf Mon Sep 17 00:00:00 2001 From: Jason Zinn Date: Wed, 21 Jan 2026 10:18:28 -0600 Subject: [PATCH 2/2] updated changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce3200d5..fdad0518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Each changelog entry gets prefixed with the category of the item (Added, Changed, Depreciated, Removed, Fixed, Security). +## [2026.01] + +- Fixed: Removed top margin from spacer block + ## [2025.12] - Fixed: Image Card & Image Overlay Card blocks now properly pass animation attributes to the animation helper class.