我希望这使用jss样式。
.a{
height: 20px;
}
.b{
height: 40px;
}
.a,.b{
width: 100px;
}
制定规则c
并将类添加到a
和b
c: {
width: '100px'
}
制作一个对象common
并将它们合并到a
和b
规则
const common = {
width: '100px',
};
a: {
height: '20px',
...common
}
b: {
height: '40px',
...common
}
有没有更好的方法?
扩展插件怎么样(默认启用)?
https://cssinjs.org/jss-plugin-extend
const styles = {
buttonColor: {
background: 'red'
},
button: {
extend: 'buttonColor',
fontSize: '20px'
}
}