Files
drip/styles/containers.js
T

23 lines
407 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,
},
orangeButton: {
backgroundColor: Colors.orange,
borderRadius: 25
},
page: {
backgroundColor: Colors.tourquiseLight,
flex: 1
}
}