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';
|
2017-12-08 19:13:21 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
container: {
|
2019-12-04 16:39:53 +00:00
|
|
|
flex: 1
|
2017-12-08 19:13:21 +00:00
|
|
|
},
|
|
|
|
list: {
|
2019-12-04 16:39:53 +00:00
|
|
|
width: '100%'
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
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
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
backdrop: {
|
2019-12-04 16:39:53 +00:00
|
|
|
...StyleSheet.absoluteFill
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
2020-08-21 13:38:50 +00:00
|
|
|
queueIcon: {
|
|
|
|
marginHorizontal: 12
|
|
|
|
},
|
2021-01-21 19:52:26 +00:00
|
|
|
omnichannelRightContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
2018-08-31 16:46:33 +00:00
|
|
|
groupTitleContainer: {
|
2020-07-06 20:56:28 +00:00
|
|
|
paddingHorizontal: 12,
|
2018-08-31 16:46:33 +00:00
|
|
|
paddingTop: 17,
|
2019-12-04 16:39:53 +00:00
|
|
|
paddingBottom: 10
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
groupTitle: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2018-08-31 16:46:33 +00:00
|
|
|
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
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverHeader: {
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
serverHeaderText: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginLeft: 12,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textRegular
|
2018-08-31 16:46:33 +00:00
|
|
|
},
|
|
|
|
serverHeaderAdd: {
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16,
|
2020-07-06 20:56:28 +00:00
|
|
|
marginRight: 12,
|
2019-03-29 19:36:07 +00:00
|
|
|
paddingVertical: 10,
|
|
|
|
...sharedStyles.textRegular
|
2021-09-23 14:17:53 +00:00
|
|
|
},
|
|
|
|
buttonCreateWorkspace: {
|
|
|
|
height: 46,
|
|
|
|
justifyContent: 'center',
|
|
|
|
marginBottom: 0
|
2017-12-08 19:13:21 +00:00
|
|
|
}
|
|
|
|
});
|