2018-01-30 19:48:26 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2019-03-29 19:36:07 +00:00
|
|
|
import { COLOR_PRIMARY, COLOR_WHITE } from '../../constants/colors';
|
2018-01-16 18:48:05 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
2018-09-11 16:32:52 +00:00
|
|
|
background: {
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_WHITE
|
2018-09-11 16:32:52 +00:00
|
|
|
},
|
2018-01-16 18:48:05 +00:00
|
|
|
container: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
tabsContainer: {
|
|
|
|
height: 45,
|
|
|
|
flexDirection: 'row',
|
|
|
|
paddingTop: 5
|
|
|
|
},
|
|
|
|
tab: {
|
|
|
|
flex: 1,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
paddingBottom: 10
|
|
|
|
},
|
|
|
|
tabEmoji: {
|
|
|
|
fontSize: 20,
|
|
|
|
color: 'black'
|
|
|
|
},
|
|
|
|
activeTabLine: {
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
height: 2,
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_PRIMARY,
|
2018-01-16 18:48:05 +00:00
|
|
|
bottom: 0
|
|
|
|
},
|
|
|
|
tabLine: {
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
height: 2,
|
|
|
|
backgroundColor: 'rgba(0,0,0,0.05)',
|
|
|
|
bottom: 0
|
|
|
|
},
|
|
|
|
categoryContainer: {
|
|
|
|
flex: 1,
|
|
|
|
alignItems: 'flex-start'
|
|
|
|
},
|
|
|
|
categoryInner: {
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
flexDirection: 'row',
|
2018-01-30 19:48:26 +00:00
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
flex: 1
|
2018-01-16 18:48:05 +00:00
|
|
|
},
|
|
|
|
categoryEmoji: {
|
|
|
|
color: 'black',
|
2018-01-30 19:48:26 +00:00
|
|
|
backgroundColor: 'transparent',
|
2018-01-16 18:48:05 +00:00
|
|
|
textAlign: 'center'
|
|
|
|
},
|
|
|
|
customCategoryEmoji: {
|
|
|
|
margin: 4
|
|
|
|
}
|
|
|
|
});
|