diff options
author | Bartosz Kaszubowski <gosimek@gmail.com> | 2024-11-05 16:14:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-05 15:14:15 +0000 |
commit | a78179aab312b69a60d01054431af166158638c7 (patch) | |
tree | 4300517fa8738992e0d6bc85839aff7a62767776 /src | |
parent | f8fb6cb9b3aabdc3cfb08675d63e48bdd5e43f61 (diff) | |
download | voidsky-a78179aab312b69a60d01054431af166158638c7.tar.zst |
StarterPack: fix "Follow All" processing layout (#6111)
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/StarterPack/StarterPackScreen.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 4baec9ec1..1b2f61bd5 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -429,11 +429,12 @@ function Header({ color="primary" size="small" disabled={isProcessing} - onPress={onFollowAll}> + onPress={onFollowAll} + style={[a.flex_row, a.gap_xs, a.align_center]}> <ButtonText> <Trans>Follow all</Trans> - {isProcessing && <Loader size="xs" />} </ButtonText> + {isProcessing && <Loader size="xs" />} </Button> )} <OverflowMenu |