diff --git a/src/components/Form/FormContainer.tsx b/src/components/Form/FormContainer.tsx index b5b95297a..74eada32f 100644 --- a/src/components/Form/FormContainer.tsx +++ b/src/components/Form/FormContainer.tsx @@ -1,12 +1,5 @@ -import { styled } from '@mui/material/styles'; import VerticallyCentered from 'components/Container'; -const FormContainer = styled(VerticallyCentered)(({ theme }) => ({ - alignItems: 'center', - - [theme.breakpoints.down('md')]: { - paddingRight: theme.spacing(5), - }, -})); +const FormContainer = VerticallyCentered; export default FormContainer;