Layout fixes

This commit is contained in:
2020-04-03 15:06:52 -05:00
parent 565eafde09
commit 84449347b4
3 changed files with 7 additions and 3 deletions

View File

@@ -125,7 +125,7 @@ export default connect(null, mapDispatchToProps)(props => {
<textarea autoFocus={props.autoFocus}
disabled={props.readOnly}
rows={4}
cols={40}
cols={36}
onChange={e=>handleChanged(e)}
className={'ConfigurationItemInput'}
value={props.value.join('\n')} />
@@ -143,7 +143,7 @@ export default connect(null, mapDispatchToProps)(props => {
<tbody>
<tr>
{infoDisplay ?
<td width='100%'>{infoDisplay} {props.label}</td> :
<td width='100%' valign={'top'}>{infoDisplay} {props.label}</td> :
<td width='100%' valign={'top'}>{props.label}</td>}
<td>{data}</td>
</tr>