Add slight spacing between Post and CW button (#5125)

zio/stable
Marco Buono 2024-09-04 15:04:08 -03:00 committed by GitHub
parent 6382a91fb0
commit c36c47d49a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 2 deletions

View File

@ -598,7 +598,7 @@ export const ComposePost = observer(function ComposePost({
</View> </View>
</> </>
) : ( ) : (
<> <View style={[styles.postBtnWrapper]}>
<LabelsBtn <LabelsBtn
labels={labels} labels={labels}
onChange={setLabels} onChange={setLabels}
@ -634,7 +634,7 @@ export const ComposePost = observer(function ComposePost({
</Text> </Text>
</View> </View>
)} )}
</> </View>
)} )}
</View> </View>
@ -1002,6 +1002,10 @@ const styles = StyleSheet.create({
paddingVertical: 6, paddingVertical: 6,
marginLeft: 12, marginLeft: 12,
}, },
postBtnWrapper: {
flexDirection: 'row',
gap: 14,
},
errorLine: { errorLine: {
flexDirection: 'row', flexDirection: 'row',
alignItems: 'center', alignItems: 'center',