-
Notifications
You must be signed in to change notification settings - Fork 1
/
sytles.js
68 lines (68 loc) · 1.25 KB
/
sytles.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
import { x, statusHeight } from "./tool"
export default {
toastView : {
minHeight: 53,
maxHeight : 100,
width:"100%",
position: 'absolute',
zIndex: 9999,
},
innerView : {
alignItems : "center",
flexDirection : 'row',
flex : 1,
paddingHorizontal : 10,
height : 60,
},
spaceBottom : {
height : x ? 15 : 5
},
spaceTop : {
height : x ? statusHeight : 5
},
top : {
top : 0,
},
bottom : {
bottom : 0,
// marginBottom : 0,
},
row : {
flexDirection : 'row'
},
toastText : {
fontSize : 14,
color : "#8ad2ff",
},
button : {
borderRadius : 5,
paddingHorizontal :10,
paddingVertical : 7,
justifyContent : 'center',
alignItems : 'center' ,
backgroundColor : "#8ad2ff",
marginLeft : 'auto',
},
buttonText : {
color : "#121010",
fontSize : 14,
},
defaultToastView : {
alignItems : "center",
paddingHorizontal : 20,
minHeight: 53,
maxHeight : 60,
position: 'absolute',
flexDirection : 'row',
borderRadius : 60,
zIndex: 9999,
width : '80%',
alignSelf : 'center'
},
dbottom : {
top : "85%"
},
dtop : {
top : "7%"
}
}