Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Mar 6, 2021
1 parent 726f073 commit c65e853
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 38 deletions.
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/ContainedButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default function ContainedButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button variant="contained">Primary</Button>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/ContainedButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default function ContainedButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button variant="contained">Primary</Button>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/IconLabelButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ export default function IconLabelButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button variant="outlined" startIcon={<DeleteIcon />}>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/IconLabelButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ export default function IconLabelButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button variant="outlined" startIcon={<DeleteIcon />}>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/LoadingButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ export default function LoadingButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<LoadingButton pending variant="outlined">
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/LoadingButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ export default function LoadingButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<LoadingButton pending variant="outlined">
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/OutlinedButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default function OutlinedButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button variant="outlined">Primary</Button>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/OutlinedButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default function OutlinedButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button variant="outlined">Primary</Button>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/TextButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default function TextButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button>Primary</Button>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/TextButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default function TextButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Button>Primary</Button>
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/UploadButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ export default function UploadButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Input accept="image/*" id="contained-button-file" multiple type="file" />
Expand Down
4 changes: 1 addition & 3 deletions docs/src/pages/components/buttons/UploadButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ export default function UploadButtons() {
return (
<Box
sx={{
'& > :not(style)': {
m: 1,
},
'& > :not(style)': { m: 1 },
}}
>
<Input accept="image/*" id="contained-button-file" multiple type="file" />
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/components/skeleton/Variants.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Variants() {
<Box
sx={{
// TODO Replace with Stack
'& > :not(style)': { mt: 1 },
'& > :not(style) + :not(style)': { mt: 1 },
}}
>
<Skeleton variant="text" />
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/components/skeleton/Variants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Variants() {
<Box
sx={{
// TODO Replace with Stack
'& > :not(style)': { mt: 1 },
'& > :not(style) + :not(style)': { mt: 1 },
}}
>
<Skeleton variant="text" />
Expand Down

0 comments on commit c65e853

Please sign in to comment.