style: fluid width for nodule inputs

This commit is contained in:
ysandler 2020-08-07 23:04:21 -05:00 committed by Joshua Shoemaker
parent 510691b731
commit 4f5d889886
2 changed files with 7 additions and 8 deletions

View File

@ -75,7 +75,7 @@ class CreateFilterNoduleForm extends Component {
<List celled>
{ filterParamElements.filterValueElements }
</List>
<Input placeholder='Key' ref={this.valueInput} style={{ width: '115px' }} />
<Input placeholder='Value' ref={this.valueInput} style={{ width: '115px' }} />
<Button animated='vertical' onClick={this.addKeyValueInput}>
<Button.Content hidden><Icon name='add' /></Button.Content>
<Button.Content visible>Add</Button.Content>

View File

@ -93,12 +93,11 @@ class CreateNodule extends Component {
<Header as='h3'>Create Nodule</Header>
<Input
placeholder='Nodule Label'
ref={this.noduleLabelInput}
icon='tags'
style={{ width: '300px' }}
/>
<br />
placeholder='Nodule Label'
ref={this.noduleLabelInput}
icon='tags'
fluid
/>
<Dropdown
value ={this.state.noduleType}
@ -110,7 +109,7 @@ class CreateNodule extends Component {
]}
fluid
selection
style={{ width: '300px' }}
fluid
onChange={this.handleChange}
/>