Skip to content

Commit

Permalink
Use CSS to transform text into title case (#40550)
Browse files Browse the repository at this point in the history
  • Loading branch information
Siobhan Bamber committed Apr 25, 2022
1 parent 60bddd3 commit 186b1e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const defaultRenderToggle = ( {
};
const expandedModeViewText = (
<Text style={ styles[ 'inserter-menu__add-block-button-text' ] }>
{ __( 'Add Blocks' ) }
{ __( 'Add blocks' ) }
</Text>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
color: $white;
font-weight: 500;
align-self: center;
text-transform: capitalize;
}

.inserter-menu__list-wrapper {
Expand Down

0 comments on commit 186b1e7

Please sign in to comment.