语义Ui反应标签颜色反转

时间:2018-06-21 10:12:48

标签: javascript reactjs semantic-ui semantic-ui-react

我尝试在语义UI反应中使用标签。但是,它的颜色像下面一样反转。

enter image description here

我预计会低于1。

enter image description here

我的代码在这里:

<div className="resetBtn">
  <Button size="medium" onClick={this.onResetClick} primary>Reset dates</Button>
  <Label color="olive" pointing="below">Select the start date</Label>
</div>

我的代码怎么了?

1 个答案:

答案 0 :(得分:0)

您应该为标签使用basic属性。

因此,不要将Label用作-

<Label color="olive" pointing="below">Select the start date</Label>

  

基本属性添加为Label--p

<Label color="olive" pointing="below" basic>Select the start date</Label>

希望这会有所帮助。 here.

提供了有关Label组件基本属性的更多信息。