Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React: How to remove button focus outline from react-bootstrap component?

I am using this CSS

.reasonButton:focus{
   color: #fff;
    background-color: #676666;
    border-color: #adadad;
    outline: none;
}

Can anybody help me with this problem? Thanks


2 Answers

.btn:focus {
    outline: none !important;
    outline-offset: none !important;
}

In my case, It was solved by using the above code

like image 66
Karan Shaw Avatar answered Aug 31 '26 09:08

Karan Shaw


button:focus {
  box-shadow: none !important;
}
like image 25
Ebi Khakbiz Avatar answered Aug 31 '26 11:08

Ebi Khakbiz



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!