Skip to content

Commit

Permalink
[Button] Fix IE11 support of CSS 'width:initial' (#12119)
Browse files Browse the repository at this point in the history
  • Loading branch information
koshea authored and oliviertassinari committed Jul 12, 2018
1 parent 6fb0f41 commit 5d69f78
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Button/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const styles = theme => ({
extendedFab: {
borderRadius: 48 / 2,
padding: '0 16px',
width: 'initial',
width: 'auto',
minWidth: 48,
height: 48,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const styles = theme => {

return {
root: {
pointerEvents: 'initial',
color: theme.palette.getContrastText(backgroundColor),
backgroundColor,
display: 'flex',
Expand Down

0 comments on commit 5d69f78

Please sign in to comment.