diff --git a/source/wp-content/themes/wporg-parent-2021/inc/block-styles.php b/source/wp-content/themes/wporg-parent-2021/inc/block-styles.php index 1c81c8e3..e78751aa 100644 --- a/source/wp-content/themes/wporg-parent-2021/inc/block-styles.php +++ b/source/wp-content/themes/wporg-parent-2021/inc/block-styles.php @@ -140,6 +140,15 @@ function setup_block_styles() { ) ); + register_block_style( + 'core/list', + array( + 'name' => 'list-long-items', + 'label' => __( 'Long items', 'wporg' ), + 'style_handle' => STYLE_HANDLE, + ) + ); + register_block_style( 'core/navigation', array( diff --git a/source/wp-content/themes/wporg-parent-2021/sass/block-styles.scss b/source/wp-content/themes/wporg-parent-2021/sass/block-styles.scss index d6ef2a80..68527234 100644 --- a/source/wp-content/themes/wporg-parent-2021/sass/block-styles.scss +++ b/source/wp-content/themes/wporg-parent-2021/sass/block-styles.scss @@ -585,3 +585,7 @@ padding: var(--wp--preset--spacing--10) !important; } } + +.is-style-list-long-items > li { + margin-bottom: var(--wp--preset--spacing--20); +}