Make WordPress Core

Changeset 52392


Ignore:
Timestamp:
12/20/2021 04:48:54 PM (3 years ago)
Author:
jffng
Message:

Twenty Twenty-Two: Sync updates from GitHub for Beta 4.

This commit syncs changes for the default theme from its active development repository to core.

This is a follow up to [52081], [52107], [52164], [52222], [52283], [52335], and [52375]. It updates the theme's font size presets and fixes an issue with query padding.

To view the full set of changes, visit https://github.com/WordPress/twentytwentytwo/compare/623a4d798227a5eb948d0286d3fa779383997649...d6cb56cce4d4789965d05327ec54e48a1be4a171.

Props schlessera, williampatton, hellofromtonya, kjellr.
See #54318.

Location:
trunk/src/wp-content/themes/twentytwentytwo
Files:
33 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentytwo/functions.php

    r52335 r52392  
    4444     */
    4545    function twentytwentytwo_styles() {
     46        // Register theme stylesheet.
     47        $theme_version = wp_get_theme()->get( 'Version' );
    4648
    47         // Register theme stylesheet.
     49        $version_string = is_string( $theme_version ) ? $theme_version : false;
    4850        wp_register_style(
    4951            'twentytwentytwo-style',
    5052            get_template_directory_uri() . '/style.css',
    5153            array(),
    52             wp_get_theme()->get( 'Version' )
     54            $version_string
    5355        );
    5456
  • trunk/src/wp-content/themes/twentytwentytwo/inc/block-patterns.php

    r52375 r52392  
    1010 *
    1111 * @since Twenty Twenty-Two 1.0
     12 *
     13 * @return void
    1214 */
    1315function twentytwentytwo_register_block_patterns() {
    1416    $block_pattern_categories = array(
    1517        'featured' => array( 'label' => __( 'Featured', 'twentytwentytwo' ) ),
    16         'footer' => array( 'label' => __( 'Footers', 'twentytwentytwo' ) ),
    17         'header' => array( 'label' => __( 'Headers', 'twentytwentytwo' ) ),
    18         'query'   => array( 'label' => __( 'Query', 'twentytwentytwo' ) ),
    19         'pages'   => array( 'label' => __( 'Pages', 'twentytwentytwo' ) ),
     18        'footer'   => array( 'label' => __( 'Footers', 'twentytwentytwo' ) ),
     19        'header'   => array( 'label' => __( 'Headers', 'twentytwentytwo' ) ),
     20        'query'    => array( 'label' => __( 'Query', 'twentytwentytwo' ) ),
     21        'pages'    => array( 'label' => __( 'Pages', 'twentytwentytwo' ) ),
    2022    );
    2123
     
    118120     * @since Twenty Twenty-Two 1.0
    119121     *
    120      * @param $block_patterns array List of block patterns by name.
     122     * @param array $block_patterns List of block patterns by name.
    121123     */
    122124    $block_patterns = apply_filters( 'twentytwentytwo_block_patterns', $block_patterns );
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php

    r52375 r52392  
    1212                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    1313
    14                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     14                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    1515
    1616                    <!-- wp:post-excerpt /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php

    r52375 r52392  
    1010                    <div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color" style="padding-top:4rem;padding-bottom:4rem"><!-- wp:query {"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":false},"displayLayout":{"type":"flex","columns":3},"align":"wide"} -->
    1111                    <div class="wp-block-query alignwide"><!-- wp:post-template -->
    12                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     12                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    1313
    1414                    <!-- wp:post-excerpt /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php

    r52375 r52392  
    1515                    <!-- wp:post-featured-image {"isLink":true,"width":"","height":"310px"} /-->
    1616
    17                     <!-- wp:post-title {"isLink":true,"fontSize":"medium"} /-->
     17                    <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
    1818
    1919                    <!-- wp:post-excerpt /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php

    r52375 r52392  
    1818                    <!-- /wp:spacer -->
    1919
    20                     <!-- wp:paragraph {"style":{"typography":{"fontWeight":"300"}},"fontSize":"large"} -->
    21                     <p class="has-large-font-size" style="font-weight:300">' . esc_html__( 'Jesús Rodriguez, Doug Stilton, Emery Driscoll, Megan Perry, Rowan Price, Angelo Tso, Edward Stilton, Amy Jensen, Boston Bell, Shay Ford, Lee Cunningham, Evelynn Ray, Landen Reese, Ewan Hart, Jenna Chan, Phoenix Murray, Mel Saunders, Aldo Davidson, Zain Hall.', 'twentytwentytwo' ) . '</p>
     20                    <!-- wp:paragraph {"style":{"typography":{"fontWeight":"300"}},"fontSize":"x-large"} -->
     21                    <p class="has-x-large-font-size" style="font-weight:300">' . esc_html__( 'Jesús Rodriguez, Doug Stilton, Emery Driscoll, Megan Perry, Rowan Price, Angelo Tso, Edward Stilton, Amy Jensen, Boston Bell, Shay Ford, Lee Cunningham, Evelynn Ray, Landen Reese, Ewan Hart, Jenna Chan, Phoenix Murray, Mel Saunders, Aldo Davidson, Zain Hall.', 'twentytwentytwo' ) . '</p>
    2222                    <!-- /wp:paragraph -->
    2323
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php

    r52375 r52392  
    88    'content'    => '<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"8rem","bottom":"8rem","left":"0px","right":"0px"}},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"backgroundColor":"primary","textColor":"background"} -->
    99                    <div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color" style="padding-top:8rem;padding-right:0px;padding-bottom:8rem;padding-left:0px"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"left":"max(1.25rem, 5vw)","right":"max(1.25rem, 5vw)"}}},"layout":{"inherit":true}} -->
    10                     <div class="wp-block-group alignfull" style="padding-right:max(1.25rem, 5vw);padding-left:max(1.25rem, 5vw)"><!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"clamp(4rem, 8vw, 6.25rem)","lineHeight":"1.15"},"spacing":{"margin":{"bottom":"2rem"}}}} -->
    11                     <h2 class="alignwide" style="font-size:clamp(4rem, 8vw, 6.25rem);line-height:1.15;margin-bottom:2rem"><em>' . esc_html__( 'Speaker Series', 'twentytwentytwo' ) . '</em></h2>
     10                    <div class="wp-block-group alignfull" style="padding-right:max(1.25rem, 5vw);padding-left:max(1.25rem, 5vw)"><!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"clamp(3.25rem, 8vw, 6.25rem)","lineHeight":"1.15"},"spacing":{"margin":{"bottom":"2rem"}}}} -->
     11                    <h2 class="alignwide" style="font-size:clamp(3.25rem, 8vw, 6.25rem);line-height:1.15;margin-bottom:2rem"><em>' . esc_html__( 'Speaker Series', 'twentytwentytwo' ) . '</em></h2>
    1212                    <!-- /wp:heading -->
    1313
     
    2828
    2929                    <!-- wp:column {"verticalAlignment":"center"} -->
    30                     <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"large"} -->
    31                     <h2 class="has-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Jesús Rodriguez', 'twentytwentytwo' ) . '</h2>
     30                    <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"x-large"} -->
     31                    <h2 class="has-x-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Jesús Rodriguez', 'twentytwentytwo' ) . '</h2>
    3232                    <!-- /wp:heading --></div>
    3333                    <!-- /wp:column -->
     
    5252
    5353                    <!-- wp:column {"verticalAlignment":"center"} -->
    54                     <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"large"} -->
    55                     <h2 class="has-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Doug Stilton', 'twentytwentytwo' ) . '</h2>
     54                    <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"x-large"} -->
     55                    <h2 class="has-x-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Doug Stilton', 'twentytwentytwo' ) . '</h2>
    5656                    <!-- /wp:heading --></div>
    5757                    <!-- /wp:column -->
     
    7676
    7777                    <!-- wp:column {"verticalAlignment":"center"} -->
    78                     <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"large"} -->
    79                     <h2 class="has-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Amy Jensen', 'twentytwentytwo' ) . '</h2>
     78                    <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"x-large"} -->
     79                    <h2 class="has-x-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Amy Jensen', 'twentytwentytwo' ) . '</h2>
    8080                    <!-- /wp:heading --></div>
    8181                    <!-- /wp:column -->
     
    100100
    101101                    <!-- wp:column {"verticalAlignment":"center"} -->
    102                     <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"large"} -->
    103                     <h2 class="has-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Emery Driscoll', 'twentytwentytwo' ) . '</h2>
     102                    <div class="wp-block-column is-vertically-aligned-center"><!-- wp:heading {"fontSize":"x-large"} -->
     103                    <h2 class="has-x-large-font-size" id="jesus-rodriguez">' . esc_html__( 'Emery Driscoll', 'twentytwentytwo' ) . '</h2>
    104104                    <!-- /wp:heading --></div>
    105105                    <!-- /wp:column -->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php

    r52375 r52392  
    1212                    <!-- /wp:separator -->
    1313
    14                     <!-- wp:heading {"style":{"typography":{"fontSize":"clamp(3rem, 6vw, 4rem)","lineHeight":"0.5"}}} -->
    15                     <h2 id="1" style="font-size:clamp(3rem, 6vw, 4rem);line-height:0.5">' . esc_html( _x( '1', 'First item in a numbered list.', 'twentytwentytwo' ) ) . '</h2>
     14                    <!-- wp:heading {"style":{"typography":{"fontSize":"var(--wp--custom--typography--font-size--gigantic, clamp(2.75rem, 6vw, 3.25rem))","lineHeight":"0.5"}}} -->
     15                    <h2 id="1" style="font-size:var(--wp--custom--typography--font-size--gigantic, clamp(2.75rem, 6vw, 3.25rem));line-height:0.5">' . esc_html( _x( '1', 'First item in a numbered list.', 'twentytwentytwo' ) ) . '</h2>
    1616                    <!-- /wp:heading -->
    1717
    18                     <!-- wp:heading {"level":3,"fontSize":"large"} -->
    19                     <h3 class="has-large-font-size" id="pigeon"><em>' . esc_html__( 'Pigeon', 'twentytwentytwo' ) . '</em></h3>
     18                    <!-- wp:heading {"level":3,"fontSize":"x-large"} -->
     19                    <h3 class="has-x-large-font-size" id="pigeon"><em>' . esc_html__( 'Pigeon', 'twentytwentytwo' ) . '</em></h3>
    2020                    <!-- /wp:heading -->
    2121
     
    4040                    <!-- /wp:separator -->
    4141
    42                     <!-- wp:heading {"style":{"typography":{"fontSize":"clamp(3rem, 6vw, 4rem)","lineHeight":"0.5"}}} -->
    43                     <h2 id="2" style="font-size:clamp(3rem, 6vw, 4rem);line-height:0.5">' . esc_html( _x( '2', 'Second item in a numbered list.', 'twentytwentytwo' ) ) . '</h2>
     42                    <!-- wp:heading {"style":{"typography":{"fontSize":"clamp(2.75rem, 6vw, 3.25rem)","lineHeight":"0.5"}}} -->
     43                    <h2 id="2" style="font-size:clamp(2.75rem, 6vw, 3.25rem);line-height:0.5">' . esc_html( _x( '2', 'Second item in a numbered list.', 'twentytwentytwo' ) ) . '</h2>
    4444                    <!-- /wp:heading -->
    4545
    46                     <!-- wp:heading {"fontSize":"large"} -->
    47                     <h2 class="has-large-font-size" id="sparrow"><meta charset="utf-8"><em>' . esc_html__( 'Sparrow', 'twentytwentytwo' ) . '</em></h2>
     46                    <!-- wp:heading {"fontSize":"x-large"} -->
     47                    <h2 class="has-x-large-font-size" id="sparrow"><meta charset="utf-8"><em>' . esc_html__( 'Sparrow', 'twentytwentytwo' ) . '</em></h2>
    4848                    <!-- /wp:heading -->
    4949
     
    6868                    <!-- /wp:separator -->
    6969
    70                     <!-- wp:heading {"style":{"typography":{"fontSize":"clamp(3rem, 6vw, 4rem)","lineHeight":"0.5"}}} -->
    71                     <h2 id="3" style="font-size:clamp(3rem, 6vw, 4rem);line-height:0.5">' . esc_html( _x( '3', 'Third item in a numbered list.', 'twentytwentytwo' ) ) . '</h2>
     70                    <!-- wp:heading {"style":{"typography":{"fontSize":"clamp(2.75rem, 6vw, 3.25rem)","lineHeight":"0.5"}}} -->
     71                    <h2 id="3" style="font-size:clamp(2.75rem, 6vw, 3.25rem);line-height:0.5">' . esc_html( _x( '3', 'Third item in a numbered list.', 'twentytwentytwo' ) ) . '</h2>
    7272                    <!-- /wp:heading -->
    7373
    74                     <!-- wp:heading {"fontSize":"large"} -->
    75                     <h2 class="has-large-font-size" id="falcon"><meta charset="utf-8"><em>' . esc_html__( 'Falcon', 'twentytwentytwo' ) . '</em></h2>
     74                    <!-- wp:heading {"fontSize":"x-large"} -->
     75                    <h2 class="has-x-large-font-size" id="falcon"><meta charset="utf-8"><em>' . esc_html__( 'Falcon', 'twentytwentytwo' ) . '</em></h2>
    7676                    <!-- /wp:heading -->
    7777
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php

    r52375 r52392  
    1313
    1414                    <!-- wp:buttons -->
    15                     <div class="wp-block-buttons"><!-- wp:button {"fontSize":"normal"} -->
    16                     <div class="wp-block-button has-custom-font-size has-normal-font-size"><a class="wp-block-button__link">' . esc_html__( 'Join our mailing list', 'twentytwentytwo' ) . '</a></div>
     15                    <div class="wp-block-buttons"><!-- wp:button {"fontSize":"medium"} -->
     16                    <div class="wp-block-button has-custom-font-size has-medium-font-size"><a class="wp-block-button__link">' . esc_html__( 'Join our mailing list', 'twentytwentytwo' ) . '</a></div>
    1717                    <!-- /wp:button --></div>
    1818                    <!-- /wp:buttons --></div>
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php

    r52375 r52392  
    2222                    <!-- /wp:spacer -->
    2323
    24                     <!-- wp:heading {"fontSize":"large"} -->
    25                     <h2 class="has-large-font-size" id="screening">' . esc_html__( 'SCREENING', 'twentytwentytwo' ) . '</h2>
     24                    <!-- wp:heading {"fontSize":"x-large"} -->
     25                    <h2 class="has-x-large-font-size" id="screening">' . esc_html__( 'SCREENING', 'twentytwentytwo' ) . '</h2>
    2626                    <!-- /wp:heading -->
    2727
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php

    r52375 r52392  
    99                <div class="wp-block-group alignfull has-foreground-color has-secondary-background-color has-text-color has-background has-link-color" style="padding-top:6rem;padding-right:max(1.25rem, 5vw);padding-bottom:4rem;padding-left:max(1.25rem, 5vw)"><!-- wp:columns {"align":"wide"} -->
    1010                <div class="wp-block-columns alignwide"><!-- wp:column {"width":"33.33%"} -->
    11                 <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"fontSize":"large"} -->
    12                 <h2 class="has-large-font-size" id="extended-trailer">' . esc_html__( 'Extended Trailer', 'twentytwentytwo' ) . '</h2>
     11                <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"fontSize":"x-large"} -->
     12                <h2 class="has-x-large-font-size" id="extended-trailer">' . esc_html__( 'Extended Trailer', 'twentytwentytwo' ) . '</h2>
    1313                <!-- /wp:heading -->
    1414
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php

    r52375 r52392  
    1313                <!-- wp:columns {"verticalAlignment":null} -->
    1414                <div class="wp-block-columns"><!-- wp:column {"verticalAlignment":"bottom"} -->
    15                 <div class="wp-block-column is-vertically-aligned-bottom"><!-- wp:heading {"style":{"typography":{"fontSize":"clamp(4rem, 8vw, 6.25rem)","lineHeight":"1.15"}}} -->
    16                 <h2 style="font-size:clamp(4rem, 8vw, 6.25rem);line-height:1.15"><em>' . wp_kses_post( __( 'Welcome to<br>the Aviary', 'twentytwentytwo' ) ) . '</em></h2>
     15                <div class="wp-block-column is-vertically-aligned-bottom"><!-- wp:heading {"style":{"typography":{"fontSize":"clamp(3.25rem, 8vw, 6.25rem)","lineHeight":"1.15"}}} -->
     16                <h2 style="font-size:clamp(3.25rem, 8vw, 6.25rem);line-height:1.15"><em>' . wp_kses_post( __( 'Welcome to<br>the Aviary', 'twentytwentytwo' ) ) . '</em></h2>
    1717                <!-- /wp:heading --></div>
    1818                <!-- /wp:column -->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php

    r52375 r52392  
    2121                    <!-- /wp:group -->
    2222
    23                     <!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"clamp(4rem, 8vw, 6.25rem)","lineHeight":"1.15"}}} -->
    24                     <h2 class="alignwide" style="font-size:clamp(4rem, 8vw, 6.25rem);line-height:1.15">' . wp_kses_post( __( '<em>The Hatchery</em>: a blog about my adventures in bird watching', 'twentytwentytwo' ) ) . '</h2>
     23                    <!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"clamp(3.25rem, 8vw, 6.25rem)","lineHeight":"1.15"}}} -->
     24                    <h2 class="alignwide" style="font-size:clamp(3.25rem, 8vw, 6.25rem);line-height:1.15">' . wp_kses_post( __( '<em>The Hatchery</em>: a blog about my adventures in bird watching', 'twentytwentytwo' ) ) . '</h2>
    2525                    <!-- /wp:heading --></div>
    2626                    <!-- /wp:group -->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php

    r52375 r52392  
    1111    'inserter' => false,
    1212    'content'  => '<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"max(1.25rem, 5vw)","left":"max(1.25rem, 5vw)","top":"0px","bottom":"0px"}}},"layout":{"inherit":true}} -->
    13                     <div class="wp-block-group alignfull" style="padding-top:0px;padding-right:max(1.25rem, 5vw);padding-bottom:0px;padding-left:max(1.25rem, 5vw)"><!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"clamp(4rem, 8vw, 6.25rem)","lineHeight":"1.15"}}} -->
    14                     <h2 class="alignwide" style="font-size:clamp(4rem, 8vw, 6.25rem);line-height:1.15">' . wp_kses_post( __( '<em>The Hatchery</em>: a blog about my adventures in bird watching', 'twentytwentytwo' ) ) . '</h2>
     13                    <div class="wp-block-group alignfull" style="padding-top:0px;padding-right:max(1.25rem, 5vw);padding-bottom:0px;padding-left:max(1.25rem, 5vw)"><!-- wp:heading {"align":"wide","style":{"typography":{"fontSize":"var(--wp--custom--typography--font-size--colossal, clamp(3.25rem, 8vw, 6.25rem))","lineHeight":"1.15"}}} -->
     14                    <h2 class="alignwide" style="font-size:var(--wp--custom--typography--font-size--colossal, clamp(3.25rem, 8vw, 6.25rem));line-height:1.15">' . wp_kses_post( __( '<em>The Hatchery</em>: a blog about my adventures in bird watching', 'twentytwentytwo' ) ) . '</h2>
    1515                    <!-- /wp:heading --></div>
    1616                    <!-- /wp:group -->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php

    r52375 r52392  
    1414                    <!-- /wp:image -->
    1515
    16                     <!-- wp:heading {"textAlign":"left","fontSize":"huge"} -->
    17                     <h2 class="has-text-align-left has-huge-font-size">' . esc_html__( 'A trouble of hummingbirds', 'twentytwentytwo' ) . '</h2>
     16                    <!-- wp:heading {"textAlign":"left","style":{"typography":{"fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"}}} -->
     17                    <h2 class="has-text-align-left" style="font-size:var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))">' . esc_html__( 'A trouble of hummingbirds', 'twentytwentytwo' ) . '</h2>
    1818                    <!-- /wp:heading -->
    1919
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php

    r52375 r52392  
    1212
    1313                    <!-- wp:group -->
    14                     <div class="wp-block-group"><!-- wp:heading {"textAlign":"center","fontSize":"huge"} -->
    15                     <h2 class="has-text-align-center has-huge-font-size" id="swoop-1">' . esc_html__( 'Swoop', 'twentytwentytwo' ) . '</h2>
     14                    <div class="wp-block-group">
     15
     16                    <!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"}}} -->
     17                    <h2 class="has-text-align-center" style="font-size:var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))">' . esc_html__( 'Swoop', 'twentytwentytwo' ) . '</h2>
    1618                    <!-- /wp:heading -->
    1719
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php

    r52375 r52392  
    1111                    <div class="wp-block-group"><!-- wp:spacer {"height":64} -->
    1212                    <div style="height:64px" aria-hidden="true" class="wp-block-spacer"></div>
    13                     <!-- /wp:spacer --><!-- wp:heading {"style":{"typography":{"lineHeight":"1","textTransform":"uppercase","fontSize":"clamp(3rem, 6vw, 4rem)"}}} -->
    14                     <h2 id="edvard-smith" style="font-size:clamp(3rem, 6vw, 4rem);line-height:1;text-transform:uppercase">' . wp_kses_post( __( 'Edvard<br>Smith', 'twentytwentytwo' ) ) . '</h2>
     13                    <!-- /wp:spacer --><!-- wp:heading {"style":{"typography":{"lineHeight":"1","textTransform":"uppercase","fontSize":"clamp(2.75rem, 6vw, 3.25rem)"}}} -->
     14                    <h2 id="edvard-smith" style="font-size:clamp(2.75rem, 6vw, 3.25rem);line-height:1;text-transform:uppercase">' . wp_kses_post( __( 'Edvard<br>Smith', 'twentytwentytwo' ) ) . '</h2>
    1515                    <!-- /wp:heading -->
    1616
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php

    r52375 r52392  
    1818                    <!-- wp:columns {"align":"wide"} -->
    1919                    <div class="wp-block-columns alignwide"><!-- wp:column {"width":"33.33%"} -->
    20                     <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"fontSize":"large"} -->
    21                     <h2 class="has-large-font-size">' . esc_html__( 'Screening', 'twentytwentytwo' ) . '</h2>
     20                    <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"fontSize":"x-large"} -->
     21                    <h2 class="has-x-large-font-size">' . esc_html__( 'Screening', 'twentytwentytwo' ) . '</h2>
    2222                    <!-- /wp:heading -->
    2323                   
     
    4646                    <div class="wp-block-group alignfull" style="padding-left:max(1.25rem, 5vw);padding-right:max(1.25rem, 5vw)"><!-- wp:columns {"align":"wide"} -->
    4747                    <div class="wp-block-columns alignwide"><!-- wp:column {"width":"33.33%"} -->
    48                     <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"fontSize":"large"} -->
    49                     <h2 class="has-large-font-size">' . esc_html__( 'Extended Trailer', 'twentytwentytwo' ) . '</h2>
     48                    <div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"fontSize":"x-large"} -->
     49                    <h2 class="has-x-large-font-size">' . esc_html__( 'Extended Trailer', 'twentytwentytwo' ) . '</h2>
    5050                    <!-- /wp:heading -->
    5151                   
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php

    r52375 r52392  
    2525                    <div class="wp-block-column" style="padding-bottom:6rem;flex-basis:66.66%"><!-- wp:query {"queryId":9,"query":{"perPage":"5","pages":0,"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"displayLayout":{"type":"list"},"layout":{"inherit":true}} -->
    2626                    <div class="wp-block-query"><!-- wp:post-template -->
    27                     <!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"0","bottom":"1rem"}},"typography":{"fontStyle":"normal","fontWeight":"300"},"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}}},"textColor":"foreground","fontSize":"huge"} /-->
     27                    <!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"0","bottom":"1rem"}},"typography":{"fontStyle":"normal","fontWeight":"300"},"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}}},"textColor":"foreground","fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    2828
    2929                    <!-- wp:post-featured-image {"isLink":true} /-->
     
    6363                    <!-- /wp:spacer -->
    6464
    65                     <!-- wp:site-title {"isLink":false,"style":{"typography":{"fontStyle":"normal","fontWeight":"300","lineHeight":"1.2"}},"fontSize":"medium","fontFamily":"source-serif-pro"} /-->
     65                    <!-- wp:site-title {"isLink":false,"style":{"typography":{"fontStyle":"normal","fontWeight":"300","lineHeight":"1.2"}},"fontSize":"large","fontFamily":"source-serif-pro"} /-->
    6666
    6767                    <!-- wp:site-tagline /-->
     
    7171                    <!-- /wp:spacer -->
    7272
    73                     <!-- wp:heading {"level":4,"fontSize":"medium"} -->
    74                     <h4 class="has-medium-font-size"><em>' . esc_html__( 'Categories', 'twentytwentytwo' ) . '</em></h4>
     73                    <!-- wp:heading {"level":4,"fontSize":"large"} -->
     74                    <h4 class="has-large-font-size"><em>' . esc_html__( 'Categories', 'twentytwentytwo' ) . '</em></h4>
    7575                    <!-- /wp:heading -->
    7676
    7777                    <!-- wp:tag-cloud {"taxonomy":"category","showTagCounts":true} /-->
    7878
    79                     <!-- wp:heading {"level":4,"fontSize":"medium"} -->
    80                     <h4 class="has-medium-font-size"><em>' . esc_html__( 'Tags', 'twentytwentytwo' ) . '</em></h4>
     79                    <!-- wp:heading {"level":4,"fontSize":"large"} -->
     80                    <h4 class="has-large-font-size"><em>' . esc_html__( 'Tags', 'twentytwentytwo' ) . '</em></h4>
    8181                    <!-- /wp:heading -->
    8282
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php

    r52375 r52392  
    4747                    <div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:query {"query":{"perPage":"5","pages":0,"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"layout":{"inherit":true}} -->
    4848                    <div class="wp-block-query"><!-- wp:post-template -->
    49                     <!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"0","bottom":"1rem"}},"typography":{"fontStyle":"normal","fontWeight":"300"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"huge"} /-->
     49                    <!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"0","bottom":"1rem"}},"typography":{"fontStyle":"normal","fontWeight":"300"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    5050
    5151                    <!-- wp:post-featured-image {"isLink":true} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php

    r52375 r52392  
    99                    <div class="wp-block-group alignfull" style="padding-top:max(1.25rem, 5vw);padding-right:max(1.25rem, 5vw);padding-bottom:max(1.25rem, 5vw);padding-left:max(1.25rem, 5vw)"><!-- wp:columns {"align":"wide","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
    1010                    <div class="wp-block-columns alignwide" style="margin-top:0px;margin-bottom:0px"><!-- wp:column {"width":"30%"} -->
    11                     <div class="wp-block-column" style="flex-basis:30%"><!-- wp:site-title {"isLink":false,"style":{"spacing":{"margin":{"top":"0px","bottom":"1rem"}},"typography":{"fontStyle":"italic","fontWeight":"300","lineHeight":"1.1"}},"fontSize":"huge","fontFamily":"source-serif-pro"} /-->
     11                    <div class="wp-block-column" style="flex-basis:30%"><!-- wp:site-title {"isLink":false,"style":{"spacing":{"margin":{"top":"0px","bottom":"1rem"}},"typography":{"fontStyle":"italic","fontWeight":"300","lineHeight":"1.1"}},"fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))","fontFamily":"source-serif-pro"} /-->
    1212
    1313                    <!-- wp:site-tagline {"fontSize":"small"} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php

    r52375 r52392  
    3737                    <!-- /wp:spacer -->
    3838
    39                     <!-- wp:heading {"level":3,"fontSize":"medium"} -->
    40                     <h3 class="has-medium-font-size"><em>' . esc_html__( 'Date', 'twentytwentytwo' ) . '</em></h3>
     39                    <!-- wp:heading {"level":3,"fontSize":"large"} -->
     40                    <h3 class="has-large-font-size"><em>' . esc_html__( 'Date', 'twentytwentytwo' ) . '</em></h3>
    4141                    <!-- /wp:heading -->
    4242
     
    4949                    <!-- /wp:spacer -->
    5050
    51                     <!-- wp:heading {"level":3,"fontSize":"medium"} -->
    52                     <h3 class="has-medium-font-size"><em>' . esc_html__( 'Location', 'twentytwentytwo' ) . '</em></h3>
     51                    <!-- wp:heading {"level":3,"fontSize":"large"} -->
     52                    <h3 class="has-large-font-size"><em>' . esc_html__( 'Location', 'twentytwentytwo' ) . '</em></h3>
    5353                    <!-- /wp:heading -->
    5454
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/query-default.php

    r52375 r52392  
    1010                    <div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide"} -->
    1111                    <!-- wp:group {"layout":{"inherit":true}} -->
    12                     <div class="wp-block-group"><!-- wp:post-title {"isLink":true,"align":"wide","fontSize":"huge"} /-->
     12                    <div class="wp-block-group"><!-- wp:post-title {"isLink":true,"align":"wide","fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    1313
    1414                    <!-- wp:post-featured-image {"isLink":true,"align":"wide","style":{"spacing":{"margin":{"top":"calc(1.75 * var(--wp--style--block-gap))"}}}} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php

    r52375 r52392  
    1111                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    1212
    13                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     13                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    1414
    1515                    <!-- wp:post-excerpt /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php

    r52375 r52392  
    1414                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    1515
    16                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     16                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    1717
    1818                    <!-- wp:post-excerpt /-->
     
    3232                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    3333
    34                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     34                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    3535
    3636                    <!-- wp:post-excerpt /-->
     
    5050                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    5151
    52                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     52                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    5353
    5454                    <!-- wp:post-excerpt /-->
     
    6666                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    6767
    68                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     68                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    6969
    7070                    <!-- wp:post-excerpt /-->
     
    8484                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    8585
    86                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     86                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    8787
    8888                    <!-- wp:post-excerpt /-->
     
    102102                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    103103
    104                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     104                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    105105
    106106                    <!-- wp:post-excerpt /-->
     
    122122                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    123123
    124                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     124                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    125125
    126126                    <!-- wp:post-excerpt /-->
     
    140140                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    141141
    142                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     142                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    143143
    144144                    <!-- wp:post-excerpt /-->
     
    158158                    <!-- wp:post-featured-image {"isLink":true,"width":"100%","height":"318px"} /-->
    159159
    160                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     160                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    161161
    162162                    <!-- wp:post-excerpt /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php

    r52375 r52392  
    1515
    1616                    <!-- wp:column {"verticalAlignment":"center","width":""} -->
    17                     <div class="wp-block-column is-vertically-aligned-center"><!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}},"typography":{"fontSize":"clamp(3rem, 6vw, 4rem)"}}} /--></div>
     17                    <div class="wp-block-column is-vertically-aligned-center"><!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}},"typography":{"fontSize":"clamp(2.75rem, 6vw, 3.25rem)"}}} /--></div>
    1818                    <!-- /wp:column --></div>
    1919                    <!-- /wp:columns -->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php

    r52375 r52392  
    99    'content'    => '<!-- wp:query {"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"perPage":10},"layout":{"inherit":true}} -->
    1010                    <div class="wp-block-query"><!-- wp:post-template -->
    11                     <!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"1rem","bottom":"1rem"}},"typography":{"fontStyle":"normal","fontWeight":"300"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"huge"} /-->
     11                    <!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"top":"1rem","bottom":"1rem"}},"typography":{"fontStyle":"normal","fontWeight":"300"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary","fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    1212
    1313                    <!-- wp:post-featured-image {"isLink":true} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php

    r52375 r52392  
    1010                    <div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide"} -->
    1111
    12                     <!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
     12                    <!-- wp:post-title {"isLink":true,"fontSize":"x-large"} /-->
    1313
    1414                    <!-- wp:post-excerpt /-->
  • trunk/src/wp-content/themes/twentytwentytwo/style.css

    r52375 r52392  
    6868    border: none;
    6969    color: var(--wp--preset--color--background);
    70     font-size: var(--wp--preset--typography--font-size--normal);
     70    font-size: var(--wp--preset--font-size--medium);
    7171    padding: calc(.667em + 2px) calc(1.333em + 2px);
    7272}
     
    9797
    9898.wp-site-blocks,
    99 .is-root-container,
     99body > .is-root-container,
    100100.edit-post-visual-editor__post-title-wrapper,
    101101.wp-block-group.alignfull,
  • trunk/src/wp-content/themes/twentytwentytwo/templates/archive.html

    r52375 r52392  
    22
    33<!-- wp:group {"layout":{"inherit":true}} -->
    4 <div class="wp-block-group"><!-- wp:query-title {"type":"archive","align":"wide","style":{"typography":{"fontSize":"clamp(3rem, 6vw, 4rem)"},"spacing":{"margin":{"bottom":"6rem"}}}} /-->
     4<div class="wp-block-group"><!-- wp:query-title {"type":"archive","align":"wide","style":{"typography":{"fontSize":"clamp(2.75rem, 6vw, 3.25rem)"},"spacing":{"margin":{"bottom":"6rem"}}}} /-->
    55
    66<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","categoryIds":[],"tagIds":[],"order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"tagName":"main","align":"wide","layout":{"inherit":false}} -->
    77<main class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide"} -->
    8 <!-- wp:post-title {"isLink":true,"align":"wide","style":{"typography":{"fontStyle":"normal","fontWeight":"300"}},"fontSize":"huge"} /-->
     8<!-- wp:post-title {"isLink":true,"align":"wide","style":{"typography":{"fontStyle":"normal","fontWeight":"300"}},"fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    99
    1010<!-- wp:post-featured-image {"isLink":true,"align":"wide","style":{"spacing":{"margin":{"top":"calc(1.75 * var(--wp--style--block-gap))"}}}} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/templates/home.html

    r52375 r52392  
    44<main class="wp-block-query"><!-- wp:post-template {"align":"wide"} -->
    55<!-- wp:group {"layout":{"inherit":true}} -->
    6 <div class="wp-block-group"><!-- wp:post-title {"isLink":true,"align":"wide","fontSize":"huge"} /-->
     6<div class="wp-block-group"><!-- wp:post-title {"isLink":true,"align":"wide","fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    77
    88<!-- wp:post-featured-image {"isLink":true,"align":"wide","style":{"spacing":{"margin":{"top":"calc(1.75 * var(--wp--style--block-gap))"}}}} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/templates/index.html

    r52375 r52392  
    44<main class="wp-block-query"><!-- wp:post-template {"align":"wide"} -->
    55<!-- wp:group {"layout":{"inherit":true}} -->
    6 <div class="wp-block-group"><!-- wp:post-title {"isLink":true,"align":"wide","fontSize":"huge"} /-->
     6<div class="wp-block-group"><!-- wp:post-title {"isLink":true,"align":"wide","fontSize":"var(--wp--custom--typography--font-size--huge, clamp(2.25rem, 4vw, 2.75rem))"} /-->
    77
    88<!-- wp:post-featured-image {"isLink":true,"align":"wide","style":{"spacing":{"margin":{"top":"calc(1.75 * var(--wp--style--block-gap))"}}}} /-->
  • trunk/src/wp-content/themes/twentytwentytwo/theme.json

    r52375 r52392  
    146146            "typography": {
    147147                "font-size": {
    148                     "gigantic": "clamp(3rem, 6vw, 4rem)",
    149                     "colossal": "clamp(4rem, 8vw, 6.25rem)"
     148                    "huge": "clamp(2.25rem, 4vw, 2.75rem)",
     149                    "gigantic": "clamp(2.75rem, 6vw, 3.25rem)",
     150                    "colossal": "clamp(3.25rem, 8vw, 6.25rem)"
    150151                },
    151152                "line-height": {
     
    183184            "fontSizes": [
    184185                {
    185                     "name": "Small",
    186186                    "size": "1rem",
    187187                    "slug": "small"
    188188                },
    189189                {
    190                     "name": "Normal",
    191190                    "size": "1.125rem",
    192                     "slug": "normal"
    193                 },
    194                 {
    195                     "name": "Medium",
     191                    "slug": "medium"
     192                },
     193                {
    196194                    "size": "1.75rem",
    197                     "slug": "medium"
    198                 },
    199                 {
    200                     "name": "Large",
     195                    "slug": "large"
     196                },
     197                {
    201198                    "size": "clamp(1.75rem, 3vw, 2.25rem)",
    202                     "slug": "large"
    203                 },
    204                 {
    205                     "name": "Huge",
    206                     "size": "clamp(2.5rem, 4vw, 3rem)",
    207                     "slug": "huge"
     199                    "slug": "x-large"
    208200                }
    209201            ]
     
    225217                },
    226218                "typography": {
    227                     "fontSize": "var(--wp--preset--typography--font-size--normal)"
     219                    "fontSize": "var(--wp--preset--font-size--medium)"
    228220                }
    229221            },
     
    265257                    "fontFamily": "var(--wp--preset--font-family--system-font)",
    266258                    "lineHeight": "var(--wp--custom--typography--line-height--normal)",
    267                     "fontSize": "var(--wp--preset--font-size--normal)",
     259                    "fontSize": "var(--wp--preset--font-size--medium)",
    268260                    "fontWeight": "normal"
    269261                }
     
    296288                    "fontWeight": "300",
    297289                    "lineHeight": "var(--wp--custom--typography--line-height--tiny)",
    298                     "fontSize": "var(--wp--preset--font-size--huge)"
     290                    "fontSize": "var(--wp--custom--typography--font-size--huge)"
    299291                }
    300292            },
     
    304296                    "fontWeight": "300",
    305297                    "lineHeight": "var(--wp--custom--typography--line-height--tiny)",
    306                     "fontSize": "var(--wp--preset--font-size--large)"
     298                    "fontSize": "var(--wp--preset--font-size--x-large)"
    307299                }
    308300            },
     
    313305                    "textTransform": "uppercase",
    314306                    "lineHeight": "var(--wp--custom--typography--line-height--normal)",
    315                     "fontSize": "var(--wp--preset--font-size--normal)"
     307                    "fontSize": "var(--wp--preset--font-size--medium)"
    316308                }
    317309            },
     
    322314                    "textTransform": "uppercase",
    323315                    "lineHeight": "var(--wp--custom--typography--line-height--normal)",
    324                     "fontSize": "var(--wp--preset--font-size--normal)"
     316                    "fontSize": "var(--wp--preset--font-size--medium)"
    325317                }
    326318            },
     
    337329            "fontFamily": "var(--wp--preset--font-family--system-font)",
    338330            "lineHeight": "var(--wp--custom--typography--line-height--normal)",
    339             "fontSize": "var(--wp--preset--font-size--normal)"
     331            "fontSize": "var(--wp--preset--font-size--medium)"
    340332        }
    341333    },
Note: See TracChangeset for help on using the changeset viewer.