Merge pull request #26 from sartography/dev

Fixes checkbox field width problems
This commit is contained in:
Aaron Louie 2020-07-22 17:27:11 -04:00 committed by GitHub
commit f1eab906b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ select.multi {
.form-field {
display: flex;
width: 100%;
max-width: 100vw;
margin-bottom: 40px;
padding: 2em;
@ -227,15 +227,21 @@ select.multi {
.form-field-input {
width: 30%;
text-align: left;
margin-right: 40px;
margin-right: 24px;
}
.form-field-label {
font-weight: bold;
text-align: right;
}
.form-field-input input {
width: 100%;
text-align: left;
&[type=checkbox] {
width: 24px;
}
}
.form-field-help {