UX: Make template fields fill the container width (#22334)

This commit is contained in:
Keegan George 2023-06-28 13:29:36 -07:00 committed by GitHub
parent c0707897ef
commit c3fa85c450
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,10 @@
.form-template-field {
input,
textarea,
select {
width: 100%;
}
// TODO(@keegan): Remove after updating dropdown/multi-select to use select-kit
&__dropdown {
border: 1px solid var(--primary-medium);
@ -51,4 +57,8 @@
margin-right: 0.5rem;
}
}
&__textarea {
min-height: 100px;
}
}