You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
make better use of space
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@ -73,6 +73,14 @@ limitations under the License.
|
|||||||
width: 100%;
|
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 {
|
.mx_DevTools_tgl {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ class GenericEditor extends DevtoolsComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
textInput(id, label) {
|
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} />;
|
value={this.state[id]} onChange={this._onChange} />;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user