Is there a way to stop the input field from lighting up when it's selected with a little css?
Searched this up and couldn't find an answer.
You are probably referring to outline
https://css-tricks.com/almanac/properties/o/outline/
*:focus {
outline: 0;
}
How to remove border (outline) around text/input boxes? (Chrome)