Skip to content

Commit

Permalink
Merge pull request #2969 from batbyR/fix-ie11-layout-problems
Browse files Browse the repository at this point in the history
Fix IE11 layout problem caused by missing `flex-basis: 0`
  • Loading branch information
fzaninotto authored Mar 7, 2019
2 parents c8ce5aa + eeafc48 commit 9a8a2d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/ra-ui-materialui/src/layout/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const styles = theme => ({
display: 'flex',
flexDirection: 'column',
flexGrow: 1,
flexBasis: 0,
padding: theme.spacing.unit * 3,
[theme.breakpoints.up('xs')]: {
paddingLeft: 5,
Expand Down

0 comments on commit 9a8a2d5

Please sign in to comment.