Fix url fields in forms not having the same length as other text inputs

This commit is contained in:
nonamethanks
2021-08-26 13:32:16 +02:00
parent 8f24e789b6
commit 08234c496d

View File

@@ -30,7 +30,7 @@ form.simple_form {
div.input {
margin-bottom: 1em;
input[type=text], input[type=file], input[type=password], input[type=email] {
input[type=text], input[type=file], input[type=password], input[type=email], input[type=url] {
width: 100%;
max-width: 25em;
}
@@ -44,7 +44,7 @@ form.simple_form {
}
}
&.field_with_errors {
&.field_with_errors {
input, select, textarea {
border: 1px solid var(--form-input-validation-error-border-color);
}