Skip to content

Commit

Permalink
[material-ui][docs] Fix typo on Sign-in/Sign-up templates (mui#42605)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanivan authored and mnajdova committed Jun 12, 2024
1 parent 1e01665 commit c7a7285
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Card = styled(MuiCard)(({ theme }) => ({

const SignInContainer = styled(Stack)(({ theme }) => ({
height: 'auto',
padingBottom: theme.spacing(12),
paddingBottom: theme.spacing(12),
backgroundImage:
theme.palette.mode === 'light'
? 'radial-gradient(ellipse at 50% 50%, hsl(210, 100%, 97%), hsl(0, 0%, 100%))'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Card = styled(MuiCard)(({ theme }) => ({

const SignInContainer = styled(Stack)(({ theme }) => ({
height: 'auto',
padingBottom: theme.spacing(12),
paddingBottom: theme.spacing(12),
backgroundImage:
theme.palette.mode === 'light'
? 'radial-gradient(ellipse at 50% 50%, hsl(210, 100%, 97%), hsl(0, 0%, 100%))'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const Card = styled(MuiCard)(({ theme }) => ({

const SignUpContainer = styled(Stack)(({ theme }) => ({
height: 'auto',
padingBottom: theme.spacing(12),
paddingBottom: theme.spacing(12),
backgroundImage:
theme.palette.mode === 'light'
? 'radial-gradient(ellipse at 50% 50%, hsl(210, 100%, 97%), hsl(0, 0%, 100%))'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const Card = styled(MuiCard)(({ theme }) => ({

const SignUpContainer = styled(Stack)(({ theme }) => ({
height: 'auto',
padingBottom: theme.spacing(12),
paddingBottom: theme.spacing(12),
backgroundImage:
theme.palette.mode === 'light'
? 'radial-gradient(ellipse at 50% 50%, hsl(210, 100%, 97%), hsl(0, 0%, 100%))'
Expand Down

0 comments on commit c7a7285

Please sign in to comment.