Fix spacing regression
This commit is contained in:
parent
e89b05e4cd
commit
b53527673f
|
@ -367,9 +367,7 @@ class ComposeForm extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
</AutosuggestTextarea>
|
</AutosuggestTextarea>
|
||||||
|
|
||||||
<div className='mb-2'>
|
<QuotedStatusContainer />
|
||||||
<QuotedStatusContainer />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
<div
|
||||||
className={classNames('flex flex-wrap items-center justify-between', {
|
className={classNames('flex flex-wrap items-center justify-between', {
|
||||||
|
|
|
@ -21,11 +21,13 @@ const QuotedStatusContainer: React.FC = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<QuotedStatus
|
<div className='mb-2'>
|
||||||
status={status}
|
<QuotedStatus
|
||||||
onCancel={onCancel}
|
status={status}
|
||||||
compose
|
onCancel={onCancel}
|
||||||
/>
|
compose
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue