fix form css
This commit is contained in:
parent
705c47bc63
commit
26777d9e30
9 changed files with 23 additions and 7 deletions
|
@ -23,7 +23,8 @@ class BlacklistForm extends Component {
|
|||
</div>;
|
||||
})
|
||||
}
|
||||
<AddButton name='add' onClick={this.bindValue.bind(this)} />
|
||||
<AddButton name='add' style='float:right'
|
||||
onClick={this.bindValue.bind(this)} />
|
||||
</div>;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.form-keymaps-form {
|
||||
column-count: 2;
|
||||
column-count: 3;
|
||||
.keymap-fields-group {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
|
|
@ -40,7 +40,8 @@ class SearchForm extends Component {
|
|||
</div>;
|
||||
})
|
||||
}
|
||||
<AddButton name='add' onClick={this.bindValue.bind(this)} />
|
||||
<AddButton name='add' style='float:right'
|
||||
onClick={this.bindValue.bind(this)} />
|
||||
</div>;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,9 +4,11 @@
|
|||
|
||||
.column-name {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.column-url {
|
||||
flex: 5;
|
||||
min-width: 0;
|
||||
}
|
||||
.column-option {
|
||||
text-align: right;
|
||||
|
|
Reference in a new issue