Skip to content

Commit 59a8530

Browse files
committed
Correct invalid background-color property value
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
1 parent 1e0a4a5 commit 59a8530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raised-button.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const RaisedButton = React.createClass({
111111
let amount = (this.props.primary || this.props.secondary) ? 0.4 : 0.08;
112112
let styles = {
113113
root: {
114-
backgroundColor: 'none',
114+
backgroundColor: 'transparent',
115115
display: 'inline-block',
116116
minWidth: this.props.fullWidth ? '100%' : this.getThemeButton().minWidth,
117117
height: this.getThemeButton().height,

0 commit comments

Comments
 (0)