Enabled form validation

This commit is contained in:
2023-04-12 23:18:26 +10:00
parent f01f88b3bd
commit eafae02c7b
10 changed files with 87 additions and 28 deletions

View File

@@ -229,7 +229,11 @@ p {
}
/** Make our placeholder text on forms lighter **/
.form-control::placeholder {
color: #a0aec0;
}
/** Force our validation color to have a higher priority than any specified border **/
.was-validated .form-control:invalid, .form-control.is-invalid {
border-color: #d92550 !important;
}