- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试将 Material UI Dashboard 转换为 TypeScript。 https://github.com/mui-org/material-ui/blob/master/docs/src/pages/page-layout-examples/dashboard/Dashboard.js
目前我面临的问题是在导出仪表板时无法在 withStyles 函数上设置 CSS 样式定义。
const styles = (theme: Theme) => ({
root: {
display: 'flex',
},
toolbar: {
paddingRight: 24, // keep right padding when drawer closed
},
toolbarIcon: {
display: 'flex',
alignItems: 'center',
justifyContent: 'flex-end',
padding: '0 8px',
...theme.mixins.toolbar,
},
appBar: {
zIndex: theme.zIndex.drawer + 1,
transition: theme.transitions.create(['width', 'margin'], {
easing: theme.transitions.easing.sharp,
duration: theme.transitions.duration.leavingScreen,
}),
},
.....
});
export default withStyles(styles(/*WHAT TO PUT IN HERE?*/))(Dashboard);
最佳答案
export default withStyles(styles)(Dashboard);
withStyles
将确定是否需要使用主题调用它。withTheme
或 withStyles(stylesObjectOrCreator, { withTheme: true })
仅当您需要访问 theme
时才需要通过 props 在你的组件内部。
API:https://material-ui.com/customization/css-in-js/#withstyles-styles---options----higher-order-component
关于ReactJS Material UI withStyles incl。 TS 中的主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53198972/
我怎样才能让这个 fiddle 工作: http://jsfiddle.net/gAHwW/ function $escape(string) { return string.replace(
我尝试将 Material UI Dashboard 转换为 TypeScript。 https://github.com/mui-org/material-ui/blob/master/docs/s
我已经尝试了几个小时来找出如何摆脱出现在我的 CSS 菜单上的奇怪框。有两层子菜单。第二级子菜单位于我想要它的父菜单右侧的位置,但是一旦它出现 - 悬停时 - 父菜单下方也会出现一个相同高度的框。这个
抱歉,如果这真的很初级,但我有一个打字机博客,上面有一个水平导航菜单。一些子菜单项的名称非常长(每个客户不可更改)——幸运的是它们都在一个“部分”中。由于宽度样式适用于所有子菜单,因此仅加宽子菜单对模
我有一个文件需要在另一个项目中包含 blah.h。我尝试将保存 blah.h 文件的目录添加到 Project -> Project Properties -> Additional include
我正在尝试使用以下代码将表格标题单元格渲染到 BufferedImage 中: Component component = table.getTableHeader().getDefaultRende
我正在尝试计算一个月内产品的总销售额,但我希望它包括任何“空”月份(没有销售额)并且只选择最近的 12 个月。 到目前为止,这是我的代码。 declare @ProductNo int set @Pr
1) 独占时间是在方法中花费的时间2) 包含时间是在方法中花费的时间加上在任何被调用函数中花费的时间3)我们称调用方法为“ parent ”,称方法为“子”。引用链接:Click here 这里的问题
我是一名优秀的程序员,十分优秀!