Skip to content

Commit

Permalink
fix: alignment of CardPersona images and better layout for tablets, 2…
Browse files Browse the repository at this point in the history
… cards max per row at this screen size (#501)
  • Loading branch information
deodorhunter authored Jan 30, 2024
1 parent f7455db commit 8a8fe7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
- Sistemato il layout e la visualizzazione della vista del CT Cartella Modulistica per gestire al meglio gli elementi
titolo, titolo del modulo e link al download in caso di testi lunghi, specialmente su mobile
- Colore di sfondo per il blocco icone impostato sul colore primario. Sistemato il contrasto tra descrizione e lo sfondo
- Risolto un problema di visualizzazione e allineamento delle immagini per le card dei blocchi elenco che rappresentano Persone,
migliorata la visualizzazione e il layout su dispositivi tablet (intervallo dimensioni: 992px-1199px)

## Versione 11.3.2 (19/01/2023)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,19 @@ const CardWithImageTemplate = (props) => {
name: 'BlockExtraTags',
dependencies: ['CardWithImageTemplate', item['@type']],
}).component;
const layoutSelected = set_four_columns ? '3' : '4';

return (
<Col
lg={set_four_columns ? '3' : '4'}
xl={layoutSelected}
lg={item['@type'] === 'Persona' ? 6 : layoutSelected}
key={item['@id']}
className="col-item mb-3"
>
{item['@type'] === 'Persona' ? (
<CardPersona
item={item}
className="listing-item card-bg shadow-sm"
className="card-bg shadow-sm"
showImage={showImage}
natural_image_size={natural_image_size}
show_description={show_description}
Expand Down

0 comments on commit 8a8fe7a

Please sign in to comment.