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

60 lines
1009 B
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
2019-03-29 19:36:07 +00:00
import sharedStyles from '../Styles';
export default StyleSheet.create({
2019-03-29 19:36:07 +00:00
contentContainer: {
paddingBottom: 30
},
container: {
2019-12-04 16:39:53 +00:00
flex: 1
},
sectionItem: {
2019-12-04 16:39:53 +00:00
paddingVertical: 11,
flexDirection: 'row',
alignItems: 'center'
},
sectionItemIcon: {
width: 56,
2019-12-04 16:39:53 +00:00
textAlign: 'center'
},
sectionItemName: {
2019-03-29 19:36:07 +00:00
flex: 1,
fontSize: 14,
...sharedStyles.textRegular
},
sectionItemDescription: {
2019-03-29 19:36:07 +00:00
fontSize: 14,
...sharedStyles.textRegular
},
separator: {
2019-12-04 16:39:53 +00:00
height: StyleSheet.hairlineWidth
},
sectionSeparator: {
2019-12-04 16:39:53 +00:00
borderBottomWidth: StyleSheet.hairlineWidth,
height: 36
},
sectionSeparatorBorder: {
2019-12-04 16:39:53 +00:00
borderTopWidth: StyleSheet.hairlineWidth
},
avatar: {
2019-03-29 19:36:07 +00:00
marginHorizontal: 16
},
roomTitleContainer: {
flex: 1
},
roomTitle: {
2019-03-29 19:36:07 +00:00
fontSize: 16,
2019-12-04 16:39:53 +00:00
paddingRight: 16,
2019-03-29 19:36:07 +00:00
...sharedStyles.textMedium
},
roomDescription: {
2019-03-29 19:36:07 +00:00
fontSize: 13,
...sharedStyles.textRegular
},
roomTitleRow: {
flexDirection: 'row',
alignItems: 'center'
}
});