Skip to content

Commit

Permalink
[core] Fix IE 11 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 15, 2018
1 parent c19e167 commit 353e22d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion src/ExpansionPanel/ExpansionPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export const styles = theme => {
return {
root: {
position: 'relative',
margin: 0,
transition: theme.transitions.create(['margin'], transition),
'&:before': {
position: 'absolute',
Expand Down
3 changes: 0 additions & 3 deletions src/ExpansionPanel/ExpansionPanelSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,9 @@ export const styles = theme => {
return {
root: {
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
minHeight: theme.spacing.unit * 6,
transition: theme.transitions.create(['min-height', 'background-color'], transition),
padding: `0 ${theme.spacing.unit * 3}px 0 ${theme.spacing.unit * 3}px`,
position: 'relative',
'&:hover:not($disabled)': {
cursor: 'pointer',
},
Expand Down
2 changes: 1 addition & 1 deletion src/Input/Textarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import debounce from 'lodash/debounce';
import EventListener from 'react-event-listener';
import withStyles from '../styles/withStyles';

const ROWS_HEIGHT = 24;
const ROWS_HEIGHT = 19;

export const styles = {
root: {
Expand Down

0 comments on commit 353e22d

Please sign in to comment.