forked from beefe/react-native-actionsheet
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstyles.js
80 lines (80 loc) · 1.38 KB
/
styles.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import { StyleSheet } from 'react-native'
export const hairlineWidth = StyleSheet.hairlineWidth
export default {
overlay: {
position: 'absolute',
top: 0,
right: 0,
bottom: 0,
left: 0,
opacity: 0.4,
backgroundColor: '#000'
},
wrapper: {
flex: 1,
flexDirection: 'row'
},
body: {
flex: 1,
alignSelf: 'flex-end',
backgroundColor: '#e5e5e5'
},
bodyDark: {
flex: 1,
alignSelf: 'flex-end',
backgroundColor: '#404040',
},
bodyIos: {
flex: 1,
alignSelf: 'flex-end',
padding: 8,
},
titleBox: {
paddingTop: 15,
paddingBottom: 5,
alignItems: 'center',
justifyContent: 'center',
},
titleText: {
fontSize: 14,
fontWeight: "bold",
textAlign: "center",
},
messageBox: {
paddingHorizontal: 15,
paddingBottom: 20,
alignItems: 'center',
justifyContent: 'center',
},
messageText: {
fontSize: 13,
textAlign: "center",
},
textLightTheme: {
color: "#7c7c7c",
},
textDarkTheme: {
color: "#a4a4A4",
},
buttonBox: {
height: 57,
alignItems: 'center',
justifyContent: 'center',
},
buttonText: {
fontSize: 20,
},
cancelButtonBox: {
height: 57,
alignItems: 'center',
justifyContent: 'center',
},
cancelButtonText: {
fontSize: 20,
fontWeight: "500",
},
roundedBox: {
borderRadius: 13,
overflow: "hidden",
},
}