mirror of
https://github.com/balzack/databag.git
synced 2025-02-18 22:19:20 +00:00
38 lines
690 B
JavaScript
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,
|
|
},
|
|
})
|
|
|