Skip to content

Commit

Permalink
fix(react-grid-material-ui): get rid old palette syntax (#1247)
Browse files Browse the repository at this point in the history
Fixes #1246
  • Loading branch information
MaximKudriavtsev authored Jul 18, 2018
1 parent f96501a commit 1a7218f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const styles = theme => ({
paddingRight: theme.spacing.unit,
},
progressBar: {
backgroundColor: theme.palette.primary[300],
backgroundColor: theme.palette.primary.light,
float: 'left',
height: theme.spacing.unit,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const styles = theme => ({
},
resizeHandleLine: {
position: 'absolute',
backgroundColor: theme.palette.primary[300],
backgroundColor: theme.palette.primary.light,
height: '50%',
width: '1px',
top: '25%',
Expand All @@ -37,7 +37,7 @@ const styles = theme => ({
resizeHandleActive: {
'& $resizeHandleLine': {
opacity: '1',
backgroundColor: theme.palette.primary[300],
backgroundColor: theme.palette.primary.light,
height: 'calc(100% - 4px)',
top: '2px',
},
Expand Down

0 comments on commit 1a7218f

Please sign in to comment.