6

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 2

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

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

Sign up to request clarification or add additional context in comments.

Comments

5
button:focus {
  box-shadow: none !important;
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.