How to customize the Semantic UI buttons(background-color, border-radius and all)

后端 未结 5 881
情话喂你
情话喂你 2021-01-22 19:04

How to customize the Semantic UI buttons(background-color, border-radius and all)

5条回答
  •  清酒与你
    2021-01-22 19:52

    You can also add semantic ui's classes before your own for specificity. For example : if your className is .create-new-menu-btn you can add in css or scss before ui.button or any other semantic ui specific clas that you neeed. So in the end, your class definition in css would look like this:

    ui.button.create-new-menu-btn {
      ....
    }
    

提交回复
热议问题