Skip to content

Commit

Permalink
Unify width of panels in Welcome close #10
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Works committed Apr 12, 2019
1 parent 970b686 commit 22657d5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/components/Welcomes/0.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export default withStylesTyped((theme: Theme) =>
createStyles({
paper: {
paddingBottom: '1rem',
maxWidth: '35rem',
width: 600,
boxSizing: 'border-box',
'& article': {
padding: '0 3rem',
textAlign: 'center',
Expand Down
3 changes: 2 additions & 1 deletion src/components/Welcomes/1a1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export default withStylesTyped((theme: Theme) =>
paper: {
padding: '2rem 4rem 1rem 4rem',
textAlign: 'center',
maxWidth: '25rem',
width: 600,
boxSizing: 'border-box',
'& > *': {
marginBottom: theme.spacing.unit * 3,
},
Expand Down
3 changes: 2 additions & 1 deletion src/components/Welcomes/1a2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default withStylesTyped((theme: Theme) =>
paper: {
padding: '2rem 1rem 1rem 1rem',
textAlign: 'center',
maxWidth: '35rem',
width: 600,
boxSizing: 'border-box',
'& > *': {
marginBottom: theme.spacing.unit * 3,
},
Expand Down
3 changes: 2 additions & 1 deletion src/components/Welcomes/1a3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default withStylesTyped((theme: Theme) =>
paper: {
padding: '2rem 1rem 1rem 1rem',
textAlign: 'center',
maxWidth: '35rem',
width: 600,
boxSizing: 'border-box',
'& > *': {
marginBottom: theme.spacing.unit * 3,
},
Expand Down
3 changes: 2 additions & 1 deletion src/components/Welcomes/1a4.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export default withStylesTyped((theme: Theme) =>
paper: {
padding: '2rem 2rem 1rem 2rem',
textAlign: 'center',
maxWidth: '35rem',
width: 600,
boxSizing: 'border-box',
'& > *': {
marginBottom: theme.spacing.unit * 3,
},
Expand Down
3 changes: 2 additions & 1 deletion src/components/Welcomes/1b1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ interface Props {
export default withStylesTyped((theme: Theme) =>
createStyles({
paper: {
maxWidth: '35rem',
width: 600,
boxSizing: 'border-box',
},
nav: {
paddingTop: theme.spacing.unit,
Expand Down

0 comments on commit 22657d5

Please sign in to comment.