Skip to content

Commit

Permalink
Added a "Changes made to" h3 heading.
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonjd committed Jan 9, 2024
1 parent 5adaa4a commit 6e918b9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ function GlobalStylesDescription( { record } ) {
}
);
return globalStylesChanges.length ? (
<PanelRow>{ globalStylesChanges.join( ', ' ) }</PanelRow>
<>
<h3 className="entities-saved-states__description-heading">
{ __( 'Changes made to:' ) }
</h3>
<PanelRow>{ globalStylesChanges.join( ', ' ) }</PanelRow>
</>
) : null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@
margin-bottom: $grid-unit-15;
}
}

.entities-saved-states__description-heading {
font-size: $default-font-size;
}

0 comments on commit 6e918b9

Please sign in to comment.