button组件 能不能设置color
发布于 5 年前 作者 gqiao 7022 次浏览 来自 问答

icon组件可以设置color,建议可以设置

1 回复

修改css

button {

  font-size: 16px;

}

button[type=“primary”] {

  background-color: #0099fe;

}

.button-hover[type=“primary”] {

  background-color:#0099fe;

  opacity: 0.5;

}

回到顶部