Open nyszilard opened 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; }
I have the same issue
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; } }
I would like to set the border property of the focused input element, but it doesn't work: