From de9e7b3c90c36b2ff771aa580da6d0d4ce4fdb58 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 18 Apr 2023 11:00:36 -0400 Subject: [PATCH] Thread: scroll into view accounting for sticky column header --- app/soapbox/features/status/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/features/status/index.tsx b/app/soapbox/features/status/index.tsx index 28bde468b..393cb2ad9 100644 --- a/app/soapbox/features/status/index.tsx +++ b/app/soapbox/features/status/index.tsx @@ -403,7 +403,7 @@ const Thread: React.FC = (props) => { useEffect(() => { scroller.current?.scrollToIndex({ index: ancestorsIds.size, - offset: -80, + offset: -140, }); setImmediate(() => statusRef.current?.querySelector('.detailed-actualStatus')?.focus());