diff options
author | Marco Buono <thecoreh@gmail.com> | 2024-09-04 15:04:08 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 11:04:08 -0700 |
commit | c36c47d49aff74f8a4176db0db6a13de141f5d95 (patch) | |
tree | 8c8966e94711ceccb9c7caa716768c50227eadb6 /src/view/com/composer/Composer.tsx | |
parent | 6382a91fb0de911a7f99f5eaa17ed5c050fb7905 (diff) | |
download | voidsky-c36c47d49aff74f8a4176db0db6a13de141f5d95.tar.zst |
Add slight spacing between Post and CW button (#5125)
Diffstat (limited to 'src/view/com/composer/Composer.tsx')
-rw-r--r-- | src/view/com/composer/Composer.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index d8aa598ef..a6eadd251 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -598,7 +598,7 @@ export const ComposePost = observer(function ComposePost({ </View> </> ) : ( - <> + <View style={[styles.postBtnWrapper]}> <LabelsBtn labels={labels} onChange={setLabels} @@ -634,7 +634,7 @@ export const ComposePost = observer(function ComposePost({ </Text> </View> )} - </> + </View> )} </View> @@ -1002,6 +1002,10 @@ const styles = StyleSheet.create({ paddingVertical: 6, marginLeft: 12, }, + postBtnWrapper: { + flexDirection: 'row', + gap: 14, + }, errorLine: { flexDirection: 'row', alignItems: 'center', |