mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 20:49:16 +00:00
31 lines
540 B
JavaScript
31 lines
540 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
import { Colors } from 'constants/Colors';
|
|
|
|
export const styles = StyleSheet.create({
|
|
wrapper: {
|
|
backgroundColor: Colors.background,
|
|
width: '100%',
|
|
height: '100%',
|
|
},
|
|
container: {
|
|
padding: 16,
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
},
|
|
splash: {
|
|
flex: 1,
|
|
width: null,
|
|
height: null,
|
|
resizeMode: 'contain',
|
|
},
|
|
pane: {
|
|
width: '50%',
|
|
height: '100%',
|
|
},
|
|
paddedPane: {
|
|
width: '50%',
|
|
height: '100%',
|
|
paddingRight: 16,
|
|
},
|
|
});
|