databag/app/mobile/src/session/channels/Channels.styled.js
2022-09-19 16:02:55 -07:00

38 lines
690 B
JavaScript

import { StyleSheet } from 'react-native';
import { Colors } from 'constants/Colors';
export const styles = StyleSheet.create({
container: {
width: '100%',
height: '100%',
display: 'flex',
flexDirection: 'column',
},
inputwrapper: {
display: 'flex',
flexDirection: 'row',
borderRadius: 4,
backgroundColor: Colors.background,
alignItems: 'center',
marginRight: 8,
marginLeft: 8,
},
inputfield: {
flex: 1,
textAlign: 'center',
padding: 4,
color: Colors.white,
fontSize: 16,
},
icon: {
paddingLeft: 8,
},
channels: {
flexGrow: 1,
width: '100%',
paddingLeft: 16,
paddingRight: 16,
},
})