Skip to content

Commit b032365

Browse files
committed
feat: add margins to content
1 parent a4d94ad commit b032365

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/app/components/Editor.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -407,12 +407,12 @@ export default function Editor({
407407
/>
408408
</span>
409409
)}
410-
<span>
410+
<div className='mt-5'>
411411
<EditorDescriptionInput<"localisedName">
412412
fieldName='localisedName'
413413
lang={lang}
414414
/>
415-
</span>
415+
</div>
416416
<span>
417417
<EditorDescriptionInput<"shortDescription">
418418
fieldName='shortDescription'
@@ -512,16 +512,16 @@ export default function Editor({
512512
/>
513513
</span>
514514
)}
515-
<span>
515+
<div className='mt-5'>
516516
<EditorInput<"logo"> fieldName='logo' />
517-
</span>
517+
</div>
518518
<span>
519519
<EditorBoolean<"localisation.localisationReady">
520520
fieldName='localisation.localisationReady'
521521
required
522522
/>
523523
</span>
524-
<span>
524+
<div className='mt-5'>
525525
<EditorMultiselect<"localisation.availableLanguages">
526526
fieldName='localisation.availableLanguages'
527527
data={allLangs().map(({ text, value }) => ({
@@ -530,7 +530,7 @@ export default function Editor({
530530
}))}
531531
required
532532
/>
533-
</span>
533+
</div>
534534
<span>
535535
<EditorMultiselect<"categories">
536536
fieldName='categories'
@@ -602,9 +602,9 @@ export default function Editor({
602602
<div>
603603
<h4>{t("countrySpecificSection.italy")}</h4>
604604
</div>
605-
<span>
605+
<div className='mt-5'>
606606
<EditorInput<"name"> fieldName='name' required />
607-
</span>
607+
</div>
608608
<span>
609609
<EditorInput<"applicationSuite"> fieldName='applicationSuite' />
610610
</span>

0 commit comments

Comments
 (0)