Update border color for input (validation).

This commit is contained in:
bmauger 2022-04-21 16:59:17 -04:00
parent 35b57185d2
commit 32fc80bbad

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 {