Rocket.Chat.ReactNative/app/views/RoomActionsView/styles.js

61 lines
1010 B
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
2019-03-27 20:06:57 +00:00
import { COLOR_SEPARATOR } from '../../constants/colors';
export default StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#F6F7F9'
},
sectionItem: {
backgroundColor: '#ffffff',
paddingVertical: 16,
flexDirection: 'row',
alignItems: 'center'
},
sectionItemDisabled: {
opacity: 0.3
},
sectionItemIcon: {
width: 56,
textAlign: 'center'
},
sectionItemName: {
flex: 1
},
sectionItemDescription: {
color: '#ccc'
},
separator: {
height: StyleSheet.hairlineWidth,
2019-03-27 20:06:57 +00:00
backgroundColor: COLOR_SEPARATOR
},
sectionSeparator: {
height: 10,
backgroundColor: '#F6F7F9'
},
sectionSeparatorBorder: {
borderColor: '#EBEDF1',
borderTopWidth: 1
},
textColorDanger: {
color: '#f5455c'
},
avatar: {
marginHorizontal: 10
},
roomTitleContainer: {
flex: 1
},
roomTitle: {
fontSize: 16
},
roomDescription: {
fontSize: 12,
color: '#ccc'
},
roomTitleRow: {
flexDirection: 'row',
alignItems: 'center'
}
});