From 837d3874500ce9eb99e93a99813963c84480057a Mon Sep 17 00:00:00 2001 From: Sainath Poojary Date: Mon, 18 Nov 2024 13:43:17 +0530 Subject: [PATCH] Pullquote: Ensure spacing consistency between editor and frontend - Added `display: block` to the `.wp-block-pullquote cite` element to align spacing between the editor and the frontend. - Removed the redundant `color: inherit` CSS rule from `.wp-block-pullquote cite`. --- packages/block-library/src/pullquote/style.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/block-library/src/pullquote/style.scss b/packages/block-library/src/pullquote/style.scss index b9e28b7cdcfaa..a577e4a22c695 100644 --- a/packages/block-library/src/pullquote/style.scss +++ b/packages/block-library/src/pullquote/style.scss @@ -11,6 +11,10 @@ color: inherit; } + cite { + display: block; + } + blockquote { margin: 0; } @@ -69,7 +73,3 @@ } } } - -.wp-block-pullquote cite { - color: inherit; -}