Skip to content

Commit

Permalink
Correct invalid background-color property value
Browse files Browse the repository at this point in the history
What are we going for here? - transparent, inherit, or palette.canvasColor all would make sense to me

http://stackoverflow.com/questions/8739665/is-background-colornone-valid-css
  • Loading branch information
jaygood committed Oct 16, 2015
1 parent 1e0a4a5 commit 59a8530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raised-button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const RaisedButton = React.createClass({
let amount = (this.props.primary || this.props.secondary) ? 0.4 : 0.08;
let styles = {
root: {
backgroundColor: 'none',
backgroundColor: 'transparent',
display: 'inline-block',
minWidth: this.props.fullWidth ? '100%' : this.getThemeButton().minWidth,
height: this.getThemeButton().height,
Expand Down

0 comments on commit 59a8530

Please sign in to comment.