Use blue outline on input fields instead of gray

This commit is contained in:
Patrick Smith 2019-02-10 14:07:29 -05:00
parent fe6a14d3ce
commit 019d362a95

View File

@ -12,7 +12,7 @@
@mixin input-state($state) {
$border-width: 1px;
$state-color: $color-gray;
$state-color: $color-blue;
@if $state == 'error' {
$border-width: 2px;
@ -283,6 +283,8 @@
}
}
@include input-state('default');
&.usa-input--error {
@include input-state('error');
}