19 lines
327 B
JavaScript
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
|
|
}
|
|
} |