32 lines
686 B
JavaScript
32 lines
686 B
JavaScript
import Colors from './colors'
|
|
import Spacing from './spacing'
|
|
|
|
export default {
|
|
bottomBorder: {
|
|
borderStyle: 'solid',
|
|
borderBottomWidth: 2,
|
|
borderBottomColor: Colors.grey,
|
|
paddingBottom: Spacing.base
|
|
},
|
|
centerItems: {
|
|
alignItems: 'center',
|
|
flex: 1,
|
|
justifyContent: 'center'
|
|
},
|
|
greyBorder: {
|
|
borderColor: Colors.grey,
|
|
borderRadius: 5,
|
|
borderStyle: 'solid',
|
|
borderWidth: 1,
|
|
},
|
|
marginBottom: { marginBottom: Spacing.base },
|
|
orangeButton: {
|
|
backgroundColor: Colors.orange,
|
|
borderRadius: 25
|
|
},
|
|
page: {
|
|
backgroundColor: Colors.tourquiseLight,
|
|
flex: 1
|
|
},
|
|
segmentContainer: { marginHorizontal: Spacing.base }
|
|
} |