From 9d9a8493d7341e2255ae5e896a74d1677b9d887e Mon Sep 17 00:00:00 2001 From: Andrew Serong <14988353+andrewserong@users.noreply.github.com> Date: Wed, 15 Mar 2023 16:06:36 +1100 Subject: [PATCH] Set to 0px for consistency --- .../template-part-converter/convert-to-sticky-group.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/edit-site/src/components/template-part-converter/convert-to-sticky-group.js b/packages/edit-site/src/components/template-part-converter/convert-to-sticky-group.js index 2e4e33e399ab92..ffdea304ba2968 100644 --- a/packages/edit-site/src/components/template-part-converter/convert-to-sticky-group.js +++ b/packages/edit-site/src/components/template-part-converter/convert-to-sticky-group.js @@ -59,7 +59,7 @@ export default function ConvertToStickyGroup( { selectedClientIds, onClose } ) { ...( newBlocks[ 0 ].attributes.style || {} ), position: { type: 'sticky', - top: '0', + top: '0px', }, }; replaceBlocks( clientIds, newBlocks );