forked from M-Labs/web2019
Fix shop import json buttons spacing
Signed-off-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
0dbd80142d
commit
1dd336385f
File diff suppressed because one or more lines are too long
|
@ -350,8 +350,8 @@ class Layout extends React.PureComponent {
|
|||
{RFQBodyType === 'import' ? (
|
||||
<div className="w-100">
|
||||
|
||||
<form className="form w-100">
|
||||
<div className="form-group">
|
||||
<form className="w-100">
|
||||
<div className="mb-3">
|
||||
<p className="small">
|
||||
Input the JSON description below. Should be something like:
|
||||
<br />
|
||||
|
@ -359,7 +359,7 @@ class Layout extends React.PureComponent {
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<div className="form-group w-100">
|
||||
<div className="mb-3 w-100">
|
||||
<textarea
|
||||
onChange={this.handleCustomConfig}
|
||||
value={this.state.customconf}
|
||||
|
@ -368,7 +368,7 @@ class Layout extends React.PureComponent {
|
|||
placeholder="Input JSON description here." />
|
||||
</div>
|
||||
{this.state.error ? (
|
||||
<div className="form-group">
|
||||
<div className="mb-3">
|
||||
<p className="text-danger">{this.state.error}</p>
|
||||
</div>
|
||||
) : null}
|
||||
|
|
Loading…
Reference in New Issue