我正在使用material-ui
的 JSS 实现来设置类的样式。
styles
因为我已经分离了我的组件,所以当涉及到组件时,我有很多重复的代码。
例如,我有所有使用通用样式的卡片:
const styles = theme => ({
cardContainer: {
position: 'relative',
width: '50%',
padding: theme.spacing.unit / 2,
},
cardOuter: {
height: '100%',
width: '100%',
textAlign: 'start',
},
card: {
width: '100%',
background: theme.palette.backgrounds.card.off,
},
cardOn: {
background: theme.palette.backgrounds.card.on,
},
cardUnavailable: {
background: theme.palette.backgrounds.card.disabled,
},
cardContent: {
display: 'flex',
flexWrap: 'wrap',
minHeight: 98,
height: 98,
[theme.breakpoints.down('sm')]: {
minHeight: 74,
height: 74,
},
padding: `${theme.spacing.unit * 1.5}px !important`,
},
});
我很少想扩展组件内的样式,但想将这些对象导入现有styles
函数,因此我不必复制这些对象。
有没有人或有人知道如何做到这一点?
谢谢