Change border color of text box

0
Hello ! I want the border of my text box to be green instead of blue when highlighted. How to achieve that ? I’m using the default responsive Atlas Layout. Thank you in advance :)
asked
1 answers
2

In your sass files, variables.scss, there is a variable called: $form-input-border-focus-color

If you change this it will change all the highlighted input boxes to this new color.

 

If you want to change just this one input box, create a class and set a value for:

.form-control:focus{}

answered