remove this light blue glow around mat form field

675 Views Asked by At

how can I remove this light blue glow around my matInput inside mat-form-field? enter image description here

I'm not sure if what property I need to override and I have no idea how to go about this, I tried searching but couldn't find anything.

any help would be appreciated

1

There are 1 best solutions below

0
On

Try this in your CSS:

input:focus {
    outline: 0;
}