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

66 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-01-29 19:52:56 +00:00
import { StyleSheet } from 'react-native';
2019-03-29 19:36:07 +00:00
import sharedStyles from '../Styles';
export default StyleSheet.create({
container: {
2019-12-04 16:39:53 +00:00
flex: 1
},
list: {
2019-12-04 16:39:53 +00:00
width: '100%'
},
dropdownContainerHeader: {
height: 41,
borderBottomWidth: StyleSheet.hairlineWidth,
alignItems: 'center',
flexDirection: 'row'
},
dropdownContainer: {
width: '100%',
position: 'absolute',
2019-12-04 16:39:53 +00:00
top: 0,
borderBottomWidth: StyleSheet.hairlineWidth
},
backdrop: {
2019-12-04 16:39:53 +00:00
...StyleSheet.absoluteFill
},
queueIcon: {
marginHorizontal: 12
},
omnichannelRightContainer: {
flexDirection: 'row',
alignItems: 'center'
},
groupTitleContainer: {
paddingHorizontal: 12,
paddingTop: 17,
2019-12-04 16:39:53 +00:00
paddingBottom: 10
},
groupTitle: {
2019-12-04 16:39:53 +00:00
fontSize: 16,
letterSpacing: 0.27,
flex: 1,
2019-12-04 16:39:53 +00:00
lineHeight: 24,
2019-03-29 19:36:07 +00:00
...sharedStyles.textBold
},
serverHeader: {
justifyContent: 'space-between'
},
serverHeaderText: {
2019-12-04 16:39:53 +00:00
fontSize: 16,
marginLeft: 12,
2019-03-29 19:36:07 +00:00
...sharedStyles.textRegular
},
serverHeaderAdd: {
2019-12-04 16:39:53 +00:00
fontSize: 16,
marginRight: 12,
2019-03-29 19:36:07 +00:00
paddingVertical: 10,
...sharedStyles.textRegular
},
buttonCreateWorkspace: {
height: 46,
justifyContent: 'center',
marginBottom: 0
}
});