Fixes checkbox field width problems
This commit is contained in:
parent
49ddb4cd79
commit
86101375b2
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue