shop: remove animation from backlog #83

Merged
sb10q merged 7 commits from esavkin/web2019:79-animation-fix into master 2023-08-10 12:29:42 +08:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 1dd336385f - Show all commits

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}