fix Wizard FormControlLabel spacing

This commit is contained in:
Sidney Alcantara
2021-09-24 11:40:22 +10:00
parent dc0fa8ea8a
commit 88f59266cf
2 changed files with 12 additions and 0 deletions

View File

@@ -208,6 +208,10 @@ export default function Step1Columns({
root: classes.formControlLabel,
label: classes.columnLabel,
}}
sx={{
alignItems: "center",
"& .MuiFormControlLabel-label": { mt: 0 },
}}
/>
</Grid>

View File

@@ -132,6 +132,10 @@ export default function Step1Columns({ config, setConfig }: IStepProps) {
label: classes.columnLabel,
}}
style={{ height: 44 }}
sx={{
alignItems: "center",
"& .MuiFormControlLabel-label": { mt: 0 },
}}
/>
</li>
@@ -152,6 +156,10 @@ export default function Step1Columns({ config, setConfig }: IStepProps) {
root: classes.formControlLabel,
label: classes.columnLabel,
}}
sx={{
alignItems: "center",
"& .MuiFormControlLabel-label": { mt: 0 },
}}
/>
</li>
))}