-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.js
83 lines (70 loc) · 1.18 KB
/
style.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
81
82
83
var React = require('react-native');
module.exports = React.StyleSheet.create({
container: {
backgroundColor: 'white'
},
header: {
flex: 1,
height: 36,
paddingHorizontal: 50,
flexDirection: 'row',
alignItems: 'center',
backgroundColor: 'rgb(237, 237, 237)'
},
nav: {
width: 24,
height: 24,
borderRadius: 12,
backgroundColor: 'white',
alignItems: 'center',
justifyContent: 'center'
},
arrow: {
borderLeftWidth: 2,
borderTopWidth: 2,
width: 10,
height: 10,
borderColor: 'rgb(188,193,199)'
},
left: {
transform: [
{
rotate: '-45deg'
}
]
},
right: {
transform: [
{
rotate: '135deg'
}
]
},
title: {
flex: 1,
textAlign: 'center',
fontSize: 14
},
heading: {
flexDirection: 'row',
backgroundColor: 'rgb(162, 172, 181)'
},
headingUnit: {
flex: 1,
textAlign: 'center',
paddingVertical: 5,
color: 'white'
},
weekWrapper: {
flexDirection: 'row'
},
dayWrapper: {
flex: 1,
paddingVertical: 10,
alignItems: 'center',
justifyContent: 'center'
},
day: {
textAlign: 'center'
}
});