Fix padding in repost dialog (#5626)

This commit is contained in:
Hailey
2024-10-06 11:41:45 -07:00
committed by GitHub
parent b52f8ced56
commit 0ebf636652
@@ -90,7 +90,7 @@ let RepostButton = ({
control={dialogControl} control={dialogControl}
nativeOptions={{preventExpansion: true}}> nativeOptions={{preventExpansion: true}}>
<Dialog.Handle /> <Dialog.Handle />
<Dialog.Inner label={_(msg`Repost or quote post`)}> <Dialog.ScrollableInner label={_(msg`Repost or quote post`)}>
<View style={a.gap_xl}> <View style={a.gap_xl}>
<View style={a.gap_xs}> <View style={a.gap_xs}>
<Button <Button
@@ -164,7 +164,7 @@ let RepostButton = ({
<ButtonText>{_(msg`Cancel`)}</ButtonText> <ButtonText>{_(msg`Cancel`)}</ButtonText>
</Button> </Button>
</View> </View>
</Dialog.Inner> </Dialog.ScrollableInner>
</Dialog.Outer> </Dialog.Outer>
</> </>
) )