-
Notifications
You must be signed in to change notification settings - Fork 41
/
defaultStyles.js
60 lines (59 loc) · 1.28 KB
/
defaultStyles.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { bold, grey, pressableColor, touchableOpacityContainer, innerTouchableOpacityContainer } from '../../common/styles'
export default {
addButton: {
...touchableOpacityContainer,
marginTop: 20,
marginBottom: 20,
borderBottomWidth: 1,
borderTopWidth: 1,
borderColor: grey,
},
addButtonText: {
color: pressableColor,
fontWeight: bold,
textAlign: 'center',
},
applePayContainer: {
marginLeft: 10,
},
cardBrandImage: {
marginRight: 8,
},
touchableOpacityContainer: touchableOpacityContainer,
cardsLoadingIndicator: {
marginBottom: 20,
marginTop: 20,
},
cardTextLast4: {
fontWeight: bold,
},
cardTextEndingIn: {
marginRight: 4,
},
cardTextType: {
fontWeight: bold,
marginRight: 4,
},
cardTextContainer: {
flexDirection: 'row',
alignItems: 'center',
},
innerTouchableOpacityContainer: innerTouchableOpacityContainer,
innerTouchableOpacityContainerLast: {
borderBottomWidth: 0,
},
paymentMethodsContainer: {
justifyContent: 'flex-end',
flex: 1,
},
paymentMethodsInnerContainer: {
borderBottomWidth: 1,
borderTopWidth: 1,
borderColor: grey,
},
paymentMethodsInnerViewContainer: {},
selectPaymentContainer: {
flex: 1,
backgroundColor: '#F2F2F5',
},
}