From 3b78d3227f67442c0e57eb3aa60bbf3faade9320 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 5 Oct 2023 20:10:43 -0700 Subject: [PATCH] Fix: add padding to the spinner bottom while loading threads (#1626) --- src/view/com/post-thread/PostThread.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index c53c2686..378ef502 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, + }, })