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> <List celled>
{ filterParamElements.filterValueElements } { filterParamElements.filterValueElements }
</List> </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 animated='vertical' onClick={this.addKeyValueInput}>
<Button.Content hidden><Icon name='add' /></Button.Content> <Button.Content hidden><Icon name='add' /></Button.Content>
<Button.Content visible>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> <Header as='h3'>Create Nodule</Header>
<Input <Input
placeholder='Nodule Label' placeholder='Nodule Label'
ref={this.noduleLabelInput} ref={this.noduleLabelInput}
icon='tags' icon='tags'
style={{ width: '300px' }} fluid
/> />
<br />
<Dropdown <Dropdown
value ={this.state.noduleType} value ={this.state.noduleType}
@ -110,7 +109,7 @@ class CreateNodule extends Component {
]} ]}
fluid fluid
selection selection
style={{ width: '300px' }} fluid
onChange={this.handleChange} onChange={this.handleChange}
/> />