diff --git a/RELEASE.md b/RELEASE.md index 21b276f99..770e0c95e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -29,3 +29,9 @@ ### Fix - ... --> + +## Versione X.X.X + +### Fix + +- Sistemato l'allineamento degli elementi nel blocco Contatti: se ci sono meno di tre elementi l'allineamento è centrato, se ce ne sono più di 3 l'allineamento è a sinistra. diff --git a/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx b/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx index 2627edb3d..5540daa4d 100644 --- a/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx +++ b/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx @@ -106,9 +106,15 @@ class Edit extends SubblocksEdit { - + 3 + ? 'justify-content-start' + : 'justify-content-center' + } + > {this.state.subblocks.map((subblock, subindex) => ( - + { )} - + 3 + ? 'justify-content-start' + : 'justify-content-center' + } + > {data.subblocks.map((subblock, index) => (