|
@@ -4,9 +4,7 @@ import VerticallyCentered from 'components/Container';
|
|
|
import { BoxProps } from '@mui/system';
|
|
|
|
|
|
const FormContainer: FC<BoxProps> = ({ children, ...props }) => (
|
|
|
- <VerticallyCentered
|
|
|
- sx={{ '&&': { alignItems: 'flex-end', textAlign: 'left' } }}
|
|
|
- {...props}>
|
|
|
+ <VerticallyCentered sx={{ '&&': { alignItems: 'flex-end' } }} {...props}>
|
|
|
{children}
|
|
|
</VerticallyCentered>
|
|
|
);
|