-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.js
More file actions
93 lines (92 loc) · 1.96 KB
/
styles.js
File metadata and controls
93 lines (92 loc) · 1.96 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import {StyleSheet} from 'react-native';
import {
widthPercentageToDP as wp,
heightPercentageToDP as hp,
} from 'react-native-responsive-screen';
import {colors} from './src/themes/colors';
import typography from './src/themes/typography';
export const styles = StyleSheet.create({
billDetails: {
fontSize: typography.fontSize.fs24,
fontWeight: '700',
textAlign: 'left',
marginTop: hp(1),
},
uploadImageView: {
height: hp(22),
borderRadius: 12,
justifyContent: 'center',
alignItems: 'center',
marginTop: hp(2),
marginBottom: hp(2),
backgroundColor: colors.gray25,
},
uploadImageText: {
fontSize: typography.fontSize.fs13,
marginTop: hp(1),
},
input: {
width: '100%',
marginTop: hp(1),
marginBottom: hp(2),
},
item: {
flex: 1,
flexDirection: 'row',
alignItems: 'center',
paddingVertical: hp(1),
},
itemTitle: {
flex: 1,
paddingHorizontal: wp(2),
textAlign: 'left',
fontWeight: '500',
fontSize: typography.fontSize.fs13,
},
itemIcon: {
width: wp(10),
height: wp(10),
borderRadius: wp(5),
justifyContent: 'center',
alignItems: 'center',
},
checkBoxView: {
width: '100%',
flexDirection: 'row',
alignItems: 'center',
paddingHorizontal: wp(1),
},
offlineTransaction: {
flex: 1,
fontSize: typography.fontSize.fs14,
fontWeight: '500',
textAlign: 'left',
marginLeft: wp(1),
},
categoryItemParent: {
width: '100%',
alignSelf: 'center',
padding: wp(1.5),
borderRadius: wp(1.5),
borderColor: colors.gray25,
},
categoryItem: {
flex: 1,
flexDirection: 'row',
alignItems: 'center',
overflow: 'hidden',
padding: wp(2.5),
},
title: {
flex: 1,
fontSize: typography.fontSize.fs14,
fontWeight: '500',
textAlign: 'left',
paddingHorizontal: wp(2),
},
amount: {
fontSize: typography.fontSize.fs11,
fontWeight: '500',
textAlign: 'left',
},
});