Skip to content

Commit

Permalink
fix: className add
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagner3UB committed Feb 2, 2024
1 parent 3e1c84e commit bed9901
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Block = ({
<div className={cx('simple-text-card', { 'cms-ui': inEditMode })}>
{inEditMode ? (
<>
<CardTitle tag="h3">
<CardTitle tag="h3" className="h4">
<div
onClick={() => {
setSelectedField('title');
Expand Down Expand Up @@ -122,7 +122,7 @@ const Block = ({
</>
) : (
<>
<CardTitle tag="h3" id={block.id + '-title'}>
<CardTitle tag="h3" id={block.id + '-title'} className="h4">
{title}
</CardTitle>
<hr />
Expand Down

0 comments on commit bed9901

Please sign in to comment.