diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-10-05 20:10:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 20:10:43 -0700 |
commit | 3b78d3227f67442c0e57eb3aa60bbf3faade9320 (patch) | |
tree | a501dcfc94b52b026339f54b44eb0506e5336ca3 | |
parent | 64153067e3387b71ae5b5c67ae2837c317a08b0d (diff) | |
download | voidsky-3b78d3227f67442c0e57eb3aa60bbf3faade9320.tar.zst |
Fix: add padding to the spinner bottom while loading threads (#1626)
-rw-r--r-- | src/view/com/post-thread/PostThread.tsx | 4 |
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, + }, }) |