Merge branch 'fix-spacing-regression' into 'develop'

Fix spacing regression

See merge request soapbox-pub/soapbox-fe!1549
This commit is contained in:
Justin 2022-06-20 18:07:04 +00:00
commit b354382f24
2 changed files with 8 additions and 8 deletions

View File

@ -367,9 +367,7 @@ class ComposeForm extends ImmutablePureComponent {
}
</AutosuggestTextarea>
<div className='mb-2'>
<QuotedStatusContainer />
</div>
<div
className={classNames('flex flex-wrap items-center justify-between', {

View File

@ -21,11 +21,13 @@ const QuotedStatusContainer: React.FC = () => {
}
return (
<div className='mb-2'>
<QuotedStatus
status={status}
onCancel={onCancel}
compose
/>
</div>
);
};