remove all right padding from form container

This commit is contained in:
Abhinav 2022-06-10 10:57:04 +05:30
parent 9cca2ae4ab
commit a06bdf8c0f

View file

@ -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;