首要的mui主题:这两种样式有什么区别?

时间:2019-06-16 21:22:21

标签: material-ui

//好的。我想我想出了怎么问这个问题:正在尝试了解// ui主题覆盖文档

const styles = theme => ({
  ...
  itemText: {
    fontSize: 14,
    fontWeight: 500,
    '&$textDense': {
      fontSize: 14,
      fontWeight: 500,
    },
  },
  textDense: {},
});

//,另外一个写道:

  ...
  itemText: {
    fontSize: 14,
    fontWeight: 500,
  },
  textDense: {
 fontSize: 14,
      fontWeight: 500,
},
});```

// What's the difference?

0 个答案:

没有答案