我正在使用材料表(https://material-table.com/)。
我的问题是,我想改变表边界半径和表阴影,显然,这个选项不存在使用'选项功能'
但是,当我检查表时,我可以修改半径和阴影,如下所示:
我想知道如何覆盖Reactjs中的这些值:
const useStyles = makeStyles(theme => ({
root: {
}
}));
const MainTable = props => {
const {className, params, ...rest} = props
(...)
return (
<MaterialTable
className={classes.MuiPaperRounded}
columns={[
{title: 'Equipement', field: 'equipement'},
{title: 'TAG', field: 'tag'},
{title: 'Nombre de points de mesures', field: 'nombreDePointsDeMesures'},
{title: 'Mesuré', field: 'mesure', type: 'boolean'}
]}
data={rows}
icons={(...)}
options={{
tableLayout: {backgroundColor: 'green'},
}}
title="Routine vibration"
/>
);
};
4条答案
按热度按时间ax6ht2ek1#
如果难以在第三方组件中定制样式,
从外部使用带有className的嵌套选择器可以。
例如:
完整代码:
7fyelxc52#
覆盖主题样式的正确方法在www.example.com上的文档中有描述https://mui.com/material-ui/customization/theme-components/#global-style-overrides。
对于您的方案,覆盖将是:
rjee0c153#
//这是工作
jucafojl4#
如果需要,您可以使用自己的组件完全覆盖该组件(例如,这里我们使用Box代替):