From eec1f1451234ef47edf6d4783b64ac4c33f7cc7f Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 25 Jul 2026 01:35:28 +0100 Subject: [PATCH] Add margin reset for preformatted text in minimal code block editor - Introduced a margin reset for preformatted text within the minimal code block editor to ensure consistent styling and alignment. --- assets/stylesheets/App.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/stylesheets/App.css b/assets/stylesheets/App.css index 85191b3..e9a535d 100644 --- a/assets/stylesheets/App.css +++ b/assets/stylesheets/App.css @@ -782,3 +782,7 @@ span.ant-skeleton-input.ant-skeleton-input-sm.text-skeleton { .ant-descriptions .ant-descriptions-item-label::after { top: 0; } + +.minimal-code-block-editor .ant-typography pre { + margin: 0; +}