diff --git a/packages/block-editor/src/hooks/layout.js b/packages/block-editor/src/hooks/layout.js index 7fbb4a0a662c2..c5072200869ed 100644 --- a/packages/block-editor/src/hooks/layout.js +++ b/packages/block-editor/src/hooks/layout.js @@ -130,15 +130,26 @@ function LayoutPanel( { setAttributes, attributes, name: blockName } ) { { showInheritToggle && ( - - setAttributes( { - layout: { inherit: ! inherit }, - } ) - } - /> + <> + + setAttributes( { + layout: { inherit: ! inherit }, + } ) + } + /> +

+ { !! inherit + ? __( + 'Nested blocks use theme content width with options for full and wide widths.' + ) + : __( + 'Nested blocks will fill the width of this container.' + ) } +

+ ) } { ! inherit && allowSwitching && (