Drop thread back to a medium sized card

This commit is contained in:
Alex Gleason 2023-04-05 15:17:11 -05:00
parent c2f5ac82b8
commit 4481d9227f
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 3 additions and 3 deletions

View File

@ -485,7 +485,7 @@ const Thread: React.FC<IThread> = (props) => {
{!isUnderReview ? ( {!isUnderReview ? (
<> <>
<hr className='-mx-6 mb-2 max-w-[100vw] border-t-2 dark:border-primary-800' /> <hr className='-mx-4 mb-2 max-w-[100vw] border-t-2 dark:border-primary-800' />
<StatusActionBar <StatusActionBar
status={status} status={status}
@ -499,7 +499,7 @@ const Thread: React.FC<IThread> = (props) => {
</HotKeys> </HotKeys>
{hasDescendants && ( {hasDescendants && (
<hr className='-mx-6 mt-2 max-w-[100vw] border-t-2 dark:border-primary-800' /> <hr className='-mx-4 mt-2 max-w-[100vw] border-t-2 dark:border-primary-800' />
)} )}
</div> </div>
); );
@ -523,7 +523,7 @@ const Thread: React.FC<IThread> = (props) => {
const titleMessage = status.visibility === 'direct' ? messages.titleDirect : messages.title; const titleMessage = status.visibility === 'direct' ? messages.titleDirect : messages.title;
return ( return (
<Column size='lg' label={intl.formatMessage(titleMessage)}> <Column label={intl.formatMessage(titleMessage)}>
<PullToRefresh onRefresh={handleRefresh}> <PullToRefresh onRefresh={handleRefresh}>
<Stack space={2}> <Stack space={2}>
<div ref={node} className='thread'> <div ref={node} className='thread'>