Skip to content

Commit

Permalink
[core] Normalize list style reset
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jan 26, 2020
1 parent a4724c9 commit f58ce66
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/src/modules/components/AppTableOfContents.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const useStyles = makeStyles(theme => ({
ul: {
padding: 0,
margin: 0,
listStyleType: 'none',
listStyle: 'none',
},
item: {
fontSize: 13,
Expand Down
2 changes: 1 addition & 1 deletion docs/src/modules/components/HomeFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const styles = theme => ({
},
'& ul': {
margin: 0,
paddingLeft: 0,
padding: 0,
listStyle: 'none',
},
'& li': {
Expand Down
2 changes: 0 additions & 2 deletions docs/src/pages/getting-started/templates/pricing/Pricing.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ const useStyles = makeStyles(theme => ({
ul: {
margin: 0,
padding: 0,
},
li: {
listStyle: 'none',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const useStyles = makeStyles(theme => ({
list: {
margin: 0,
listStyle: 'none',
paddingLeft: 0,
padding: 0,
},
listItem: {
paddingTop: theme.spacing(0.5),
Expand Down
5 changes: 2 additions & 3 deletions packages/material-ui/src/Breadcrumbs/Breadcrumbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ export const styles = {
alignItems: 'center',
padding: 0, // Reset
margin: 0, // Reset
},
/* Styles applied to the li element. */
li: {
listStyle: 'none',
},
/* Styles applied to the li element. */
li: {},
/* Styles applied to the separator element. */
separator: {
display: 'flex',
Expand Down

0 comments on commit f58ce66

Please sign in to comment.