Merge branch 'fix-spacing-regression' into 'develop'
Fix spacing regression See merge request soapbox-pub/soapbox-fe!1549
This commit is contained in:
commit
b354382f24
|
@ -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 (
|
||||||
|
<div className='mb-2'>
|
||||||
<QuotedStatus
|
<QuotedStatus
|
||||||
status={status}
|
status={status}
|
||||||
onCancel={onCancel}
|
onCancel={onCancel}
|
||||||
compose
|
compose
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue