Add missing gap to PendingStatus
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
3a94736285
commit
049554db84
1 changed files with 10 additions and 8 deletions
|
@ -4,7 +4,7 @@ import React from 'react';
|
|||
import Account from 'soapbox/components/account';
|
||||
import StatusContent from 'soapbox/components/status-content';
|
||||
import StatusReplyMentions from 'soapbox/components/status-reply-mentions';
|
||||
import { Card, HStack } from 'soapbox/components/ui';
|
||||
import { Card, HStack, Stack } from 'soapbox/components/ui';
|
||||
import PlaceholderCard from 'soapbox/features/placeholder/components/placeholder-card';
|
||||
import PlaceholderMediaGallery from 'soapbox/features/placeholder/components/placeholder-media-gallery';
|
||||
import QuotedStatus from 'soapbox/features/status/containers/quoted-status-container';
|
||||
|
@ -78,16 +78,18 @@ const PendingStatus: React.FC<IPendingStatus> = ({ idempotencyKey, className, mu
|
|||
<div className='status__content-wrapper'>
|
||||
<StatusReplyMentions status={status} />
|
||||
|
||||
<StatusContent
|
||||
status={status}
|
||||
collapsable
|
||||
/>
|
||||
<Stack space={4}>
|
||||
<StatusContent
|
||||
status={status}
|
||||
collapsable
|
||||
/>
|
||||
|
||||
<PendingStatusMedia status={status} />
|
||||
<PendingStatusMedia status={status} />
|
||||
|
||||
{status.poll && <PollPreview pollId={status.poll as string} />}
|
||||
{status.poll && <PollPreview pollId={status.poll as string} />}
|
||||
|
||||
{status.quote && <QuotedStatus statusId={status.quote as string} />}
|
||||
{status.quote && <QuotedStatus statusId={status.quote as string} />}
|
||||
</Stack>
|
||||
</div>
|
||||
|
||||
{/* TODO */}
|
||||
|
|
Loading…
Reference in a new issue