如何解决ReactJS:如何在Material UI中更改步进标签的字体大小和marginTop?
我想更改步进标签的字体大小以及标签和圆形之间的边距。默认情况下marginTop为16px,我想减小它。有什么办法吗?
这是材料ui中的CodesandBox代码: https://codesandbox.io/s/tnpyj?file=/demo.js:0-6101
<Stepper alternativeLabel nonLinear activeStep={activeStep}>
{steps.map((label,index) => {
const stepProps = {};
const buttonProps = {};
if (isstepOptional(index)) {
buttonProps.optional = <Typography variant="caption">Optional</Typography>;
}
if (isstepSkipped(index)) {
stepProps.completed = false;
}
return (
<Step key={label} {...stepProps}>
<StepButton
onClick={handleStep(index)}
completed={isstepComplete(index)}
{...buttonProps}
>
{label}
</StepButton>
</Step>
);
})}
</Stepper>
```
解决方法
在<StepLabel>
内使用<Step>
组件,然后通过查看StepLabel CSS documentation覆盖样式:
// Add this
import StepLabel from '@material-ui/core/StepLabel';
const useStyles = makeStyles((theme) => ({
// your other stuff here
// Add this
step_label_root: {
fontSize: '10px',}
}));
// within the component
<Step key={label} {...stepProps}>
<StepButton
onClick={handleStep(index)}
completed={isStepComplete(index)}
{...buttonProps}>
<StepLabel classes={{ label: classes.step_label_root }}> // HERE add this
{label}
</StepLabel>
</StepButton>
</Step>
,
如果要在material-ui中进行样式更改,则应使用withStyles。打字稿中的示例:
String x = getValue(42,toString: true); // Add `as String` if you disable downcasts.
int y = getValue(42); // And `as int` here.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。