settings frontend bugfix + refactoring

This commit is contained in:
2024-04-12 11:36:30 +02:00
parent 3888e7fcde
commit b274cd4ad2
11 changed files with 217 additions and 126 deletions

View File

@@ -0,0 +1,7 @@
import {FormGroup, styled} from "@mui/material";
const SpacedFormGroup = styled(FormGroup)((props) => ({
marginBottom: props.theme.spacing(2)
}));
export default SpacedFormGroup;