Add slight spacing between Post and CW button (#5125)
parent
6382a91fb0
commit
c36c47d49a
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue