code-farmz / ng-otp-input

A fully customizable, one-time password input component for the web built with Angular.
MIT License
112 stars 55 forks source link

Cannot set border property for focused input element #110

Open nyszilard opened 11 months ago

nyszilard commented 11 months ago

I would like to set the border property of the focused input element, but it doesn't work:

:host ::ng-deep .otp-input:focus {
  border-color: red !important;
}
moimed commented 11 months ago

I have the same issue

Tom-harsh81 commented 3 months ago

Avoid using ng-deep , move your code in global stylesheet , it will work .wrapper-class { .otp-input { border: solid 1px green; } .otp-input:focus { border-color: red; } }