about summary refs log tree commit diff
path: root/src/view/com
diff options
context:
space:
mode:
authorFoster <ckhofq@gmail.com>2024-12-04 16:42:15 -0500
committerGitHub <noreply@github.com>2024-12-04 21:42:15 +0000
commit0ee20731d42bd58ac6a1020615e399b01767ce2d (patch)
treec21ba87c443c8c00e19cc1636f161768d7ce37af /src/view/com
parent4582a9cf1f47faeaadd8a362bf8ce1ce9e017a96 (diff)
downloadvoidsky-0ee20731d42bd58ac6a1020615e399b01767ce2d.tar.zst
adjust feed scroll bar top offset (#6940)
Co-authored-by: skipness <ckhf@proton.me>
Diffstat (limited to 'src/view/com')
-rw-r--r--src/view/com/util/List.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx
index 8176d0b43..31fd0aa1d 100644
--- a/src/view/com/util/List.tsx
+++ b/src/view/com/util/List.tsx
@@ -151,7 +151,7 @@ let List = React.forwardRef<ListMethods, ListProps>(
     return (
       <FlatList_INTERNAL
         {...props}
-        scrollIndicatorInsets={{right: 1}}
+        scrollIndicatorInsets={{top: headerOffset, right: 1}}
         contentOffset={contentOffset}
         refreshControl={refreshControl}
         onScroll={scrollHandler}