about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-10-05 20:10:43 -0700
committerGitHub <noreply@github.com>2023-10-05 20:10:43 -0700
commit3b78d3227f67442c0e57eb3aa60bbf3faade9320 (patch)
treea501dcfc94b52b026339f54b44eb0506e5336ca3 /src
parent64153067e3387b71ae5b5c67ae2837c317a08b0d (diff)
downloadvoidsky-3b78d3227f67442c0e57eb3aa60bbf3faade9320.tar.zst
Fix: add padding to the spinner bottom while loading threads (#1626)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/post-thread/PostThread.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx
index c53c2686c..378ef5028 100644
--- a/src/view/com/post-thread/PostThread.tsx
+++ b/src/view/com/post-thread/PostThread.tsx
@@ -439,5 +439,7 @@ const styles = StyleSheet.create({
   parentSpinner: {
     paddingVertical: 10,
   },
-  childSpinner: {},
+  childSpinner: {
+    paddingBottom: 200,
+  },
 })