Merge pull request #364 from Safelite/brm-fix-validate-border-color

Update border color for input (validation).
This commit is contained in:
bmauger 2022-04-21 17:04:15 -04:00 committed by GitHub
commit 37d599cd1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,6 +73,18 @@ html {
border-radius: .5rem;
}
}
input:checked:focus {
+ label {
box-shadow: 0 0 0 1px $blue;
border-radius: .5rem;
}
}
input:checked:not(:focus) {
+ label {
box-shadow: 0 0 0 1px $blue;
border-radius: .5rem;
}
}
input:focus {
border: 1px solid $gray-500;
+ label {