Fix shop import json buttons spacing

Signed-off-by: Egor Savkin <es@m-labs.hk>
pull/88/head
Egor Savkin 2023-07-26 11:17:26 +08:00 committed by sb10q
parent 5d69e9cef5
commit 52afd69445
2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -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}