我正在使用 material-ui 并尝试RaisedButton
使用其名为的道具之一来设置背景颜色的样式backgroundColor
:
import React, {Component} from 'react';
import RaisedButton from 'material-ui/lib/raised-button';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './Home.scss';
class Home extends Component {
render() {
return (
<div>
<h1 className={s.h1}>Pomodoro Tech</h1>
<div className={s.imgContain}>
<img src={require('./pom.png')} width="100%" height="100%"/>
</div>
<div>
<RaisedButton
label="Login"
secondary={true}
backgroundColor="#77CA2D"
/>
<RaisedButton
backgroundColor="#77CA2D"
label="About"
/>
</div>
</div>
);
}
}
export default withStyles(Home, s);
但是该属性永远不会产生任何差异。
我使用的material-ui的版本是0.15.0-alpha.1
,根据npm list --depth=0
命令的结果。
在我问这个问题之前,我已经做了一些搜索,但无法弄清楚问题是什么。