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
5d69e9cef5
commit
52afd69445
File diff suppressed because one or more lines are too long
|
@ -350,8 +350,8 @@ class Layout extends React.PureComponent {
|
||||||
{RFQBodyType === 'import' ? (
|
{RFQBodyType === 'import' ? (
|
||||||
<div className="w-100">
|
<div className="w-100">
|
||||||
|
|
||||||
<form className="form w-100">
|
<form className="w-100">
|
||||||
<div className="form-group">
|
<div className="mb-3">
|
||||||
<p className="small">
|
<p className="small">
|
||||||
Input the JSON description below. Should be something like:
|
Input the JSON description below. Should be something like:
|
||||||
<br />
|
<br />
|
||||||
|
@ -359,7 +359,7 @@ class Layout extends React.PureComponent {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="form-group w-100">
|
<div className="mb-3 w-100">
|
||||||
<textarea
|
<textarea
|
||||||
onChange={this.handleCustomConfig}
|
onChange={this.handleCustomConfig}
|
||||||
value={this.state.customconf}
|
value={this.state.customconf}
|
||||||
|
@ -368,7 +368,7 @@ class Layout extends React.PureComponent {
|
||||||
placeholder="Input JSON description here." />
|
placeholder="Input JSON description here." />
|
||||||
</div>
|
</div>
|
||||||
{this.state.error ? (
|
{this.state.error ? (
|
||||||
<div className="form-group">
|
<div className="mb-3">
|
||||||
<p className="text-danger">{this.state.error}</p>
|
<p className="text-danger">{this.state.error}</p>
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
Loading…
Reference in New Issue