Merge pull request #588 from ente-io/center-forms

Center forms
This commit is contained in:
Abhinav Kumar 2022-06-10 00:21:40 +05:30 committed by GitHub
commit 9cca2ae4ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,8 @@ import { styled } from '@mui/material/styles';
import VerticallyCentered from 'components/Container'; import VerticallyCentered from 'components/Container';
const FormContainer = styled(VerticallyCentered)(({ theme }) => ({ const FormContainer = styled(VerticallyCentered)(({ theme }) => ({
alignItems: 'flex-end', alignItems: 'center',
paddingRight: theme.spacing(10),
[theme.breakpoints.down('md')]: { [theme.breakpoints.down('md')]: {
paddingRight: theme.spacing(5), paddingRight: theme.spacing(5),
}, },