Rocket.Chat.ReactNative/app/containers/EmojiPicker/styles.js

56 lines
866 B
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
export default StyleSheet.create({
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,
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',
alignItems: 'center',
justifyContent: 'flex-start',
flex: 1
},
categoryEmoji: {
backgroundColor: 'transparent',
textAlign: 'center'
},
customCategoryEmoji: {
2019-11-25 20:01:17 +00:00
margin: 8
}
});