feat(polls) added padding to the buttons container
This commit is contained in:
parent
92c6324ff3
commit
da5603dd9a
|
@ -141,7 +141,7 @@ const PollCreate = (props: AbstractProps) => {
|
|||
keyExtractor = { (item, index) => index.toString() }
|
||||
ref = { answerListRef }
|
||||
renderItem = { renderListItem } />
|
||||
<View style = { chatStyles.pollCreateButtons }>
|
||||
<View style = { chatStyles.pollCreateButtonsContainer }>
|
||||
<Button
|
||||
color = '#3D3D3D'
|
||||
mode = { BUTTON_MODES.CONTAINED }
|
||||
|
|
|
@ -146,6 +146,10 @@ export const chatStyles = createStyleSheet({
|
|||
flex: 1
|
||||
},
|
||||
|
||||
pollCreateButtonsContainer: {
|
||||
paddingVertical: BaseTheme.spacing[2]
|
||||
},
|
||||
|
||||
pollCreateButton: {
|
||||
flex: 1,
|
||||
marginHorizontal: 8
|
||||
|
|
Loading…
Reference in New Issue