From 362f7520aeae92fe3b0b4656fc57bddfa7660c1f Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 19 May 2022 12:42:01 -0500 Subject: [PATCH] Fix Tombstone margins in threads, fixes #971 --- app/soapbox/components/tombstone.tsx | 2 +- app/soapbox/features/status/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/components/tombstone.tsx b/app/soapbox/components/tombstone.tsx index f993793158..672d1c5f65 100644 --- a/app/soapbox/components/tombstone.tsx +++ b/app/soapbox/components/tombstone.tsx @@ -6,7 +6,7 @@ import { Text } from 'soapbox/components/ui'; /** Represents a deleted item. */ const Tombstone: React.FC = () => { return ( -
+
diff --git a/app/soapbox/features/status/index.tsx b/app/soapbox/features/status/index.tsx index 33666c56b0..f30f693351 100644 --- a/app/soapbox/features/status/index.tsx +++ b/app/soapbox/features/status/index.tsx @@ -561,7 +561,7 @@ class Status extends ImmutablePureComponent { renderTombstone(id: string) { return ( -
+
);