Skip to content

Commit

Permalink
fix: simple card title changed from h4 to h3 (#514)
Browse files Browse the repository at this point in the history
* fix: simple card title changed from h4 to h3

* fix: className add

* chore: release.md
  • Loading branch information
Wagner3UB authored Feb 5, 2024
1 parent 1c2e689 commit c03f4cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,18 @@
- Aggiunta l'icona per il formato di file CSV


## Versione X.X.X (dd/mm/yyyy)

### Fix

- Sistemata la gerarchia per i titoli dentro al blocco semplice

## Versione 11.3.3 (30/01/2024)

### Migliorie

- Migliorato il focus sulle immagini in edit del blocco Immagine quando queste sono allineate a sinistra o a destra.

### Fix

- Sistemato il layout del blocco elenco per i Bandi
Expand Down
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="h4">
<CardTitle tag="h3" className="h4">
<div
onClick={() => {
setSelectedField('title');
Expand Down Expand Up @@ -122,7 +122,7 @@ const Block = ({
</>
) : (
<>
<CardTitle tag="h4" id={block.id + '-title'}>
<CardTitle tag="h3" id={block.id + '-title'} className="h4">
{title}
</CardTitle>
<hr />
Expand Down

0 comments on commit c03f4cd

Please sign in to comment.