Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename Grid.justify to Grid.justifyContent. #185

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/frontend/src/views/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const Login: FC = () => {
</Grid>
)}
</Grid>
<Grid container alignItems="center" justify="space-between">
<Grid container alignItems="center" justifyContent="space-between">
<Grid item>
<FormControlLabel
control={<Checkbox color="primary" />}
Expand All @@ -125,7 +125,7 @@ export const Login: FC = () => {
</Button>
</Grid>
</Grid>
<Grid container justify="center" className={classes.marginTop}>
<Grid container justifyContent="center" className={classes.marginTop}>
{' '}
<Button
variant="outlined"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const SignUp: FC = () => {
</Grid>
)}
</Grid>
<Grid container justify="center" className={classes.marginTop}>
<Grid container justifyContent="center" className={classes.marginTop}>
<Button
variant="outlined"
color="primary"
Expand Down