升级到4.0.0后,物料UI React输入损坏

时间:2019-05-24 01:14:32

标签: reactjs material-ui react-material

"@material-ui/core": "3.9.2",升级到"@material-ui/core": "^4.0.0-rc.0",后,我遇到了一些CSS问题。

带有输入的示例,某些CSS:height: auto !important;似乎丢失了:

enter image description here

我的配置与此处相同:https://material-ui.com/getting-started/installation/

我的代码很基本:

          <FormControl>
            <InputLabel htmlFor="email">{`Your email address`}</InputLabel>
            <Input
              id="email"
              onChange={e => this.setState({ email: e.target.value })}
              type="text"
              onKeyPress={this.handleKeyPress}
              value={this.state.email}
            />
          </FormControl>

1 个答案:

答案 0 :(得分:0)

import 'tachyons'发生冲突。 删除后,效果很好。