make better use of space

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2019-02-25 22:38:33 +00:00
parent 5bdd61111d
commit 56d58f8600
2 changed files with 9 additions and 1 deletions

View File

@ -73,6 +73,14 @@ limitations under the License.
width: 100%;
}
.mx_DevTools_content .mx_Field_input {
display: inline-block;
}
.mx_DevTools_content .mx_Field_input + .mx_Field_input {
margin-left: 42px;
}
.mx_DevTools_tgl {
display: none;

View File

@ -57,7 +57,7 @@ class GenericEditor extends DevtoolsComponent {
}
textInput(id, label) {
return <Field id={id} label={label} size="32" autoFocus={true} type="text" autoComplete="on"
return <Field id={id} label={label} size="42" autoFocus={true} type="text" autoComplete="on"
value={this.state[id]} onChange={this._onChange} />;
}
}