Files
drip/styles/containers.js
T

19 lines
327 B
JavaScript

import Colors from './colors'
export default {
centerItems: {
alignItems: 'center',
flex: 1,
justifyContent: 'center'
},
greyBorder: {
borderColor: Colors.grey,
borderRadius: 5,
borderStyle: 'solid',
borderWidth: 1,
},
page: {
backgroundColor: Colors.tourquiseLight,
flex: 1
}
}