Bootstrap Button active color change

前端 未结 3 907
挽巷
挽巷 2021-02-14 06:20

I\'m using the bootstrap button class, more specifically the following :


         


        
3条回答
  •  醉话见心
    2021-02-14 06:45

    I've been playing around with this and the other answers and in Bootstrap 4.3, this is all I had to do:

    .btn.btn-primary:active:hover,
    .btn.btn-primary:hover {
        border-color: $color-primary;
        background-color: $color-primary;
        // color: $color-primary;
    }
    

提交回复
热议问题