2022-09-16 22:00:29 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { Colors } from 'constants/Colors';
|
|
|
|
|
|
|
|
export const styles = StyleSheet.create({
|
2022-09-21 18:12:46 +00:00
|
|
|
container: {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
},
|
2022-09-16 22:00:29 +00:00
|
|
|
tabBar: {
|
|
|
|
backgroundColor: Colors.primary,
|
|
|
|
},
|
2022-09-19 05:42:27 +00:00
|
|
|
home: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
height: '100%',
|
|
|
|
},
|
|
|
|
sidebar: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
height: '100%',
|
|
|
|
width: '33%',
|
|
|
|
maxWidth: 500,
|
|
|
|
},
|
|
|
|
conversation: {
|
2022-09-30 21:00:51 +00:00
|
|
|
width: '67%',
|
2022-09-19 05:42:27 +00:00
|
|
|
},
|
2022-09-23 07:56:31 +00:00
|
|
|
drawer: {
|
2022-09-25 05:56:41 +00:00
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
paddingLeft: 8,
|
2022-09-23 07:56:31 +00:00
|
|
|
backgroundColor: Colors.formBackground,
|
|
|
|
},
|
2022-09-19 05:42:27 +00:00
|
|
|
options: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
paddingTop: 8,
|
|
|
|
paddingBottom: 4,
|
2022-09-21 18:12:46 +00:00
|
|
|
paddingRight: 8,
|
2022-09-19 05:42:27 +00:00
|
|
|
},
|
|
|
|
option: {
|
|
|
|
width: '50%',
|
|
|
|
height: 32,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
},
|
|
|
|
icon: {
|
|
|
|
paddingRight: 8,
|
|
|
|
},
|
|
|
|
channels: {
|
|
|
|
flexGrow: 1,
|
2022-09-21 18:12:46 +00:00
|
|
|
flexShrink: 1,
|
|
|
|
position: 'relative',
|
2022-09-19 05:42:27 +00:00
|
|
|
},
|
2022-09-19 19:07:33 +00:00
|
|
|
tabframe: {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
2022-10-14 21:01:07 +00:00
|
|
|
},
|
|
|
|
disconnected: {
|
|
|
|
width: 8,
|
|
|
|
height: 8,
|
|
|
|
borderRadius: 4,
|
|
|
|
backgroundColor: Colors.alert,
|
|
|
|
position: 'absolute',
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
},
|
|
|
|
profileLabel: {
|
|
|
|
paddingLeft: 8,
|
|
|
|
},
|
2022-09-16 22:00:29 +00:00
|
|
|
});
|