-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.js
46 lines (44 loc) · 1.09 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
import {StyleSheet, Dimensions} from 'react-native';
import * as constants from "./global.js"
export default StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
alignContent: "center",
paddingBottom: 20,
paddingTop: 20
},
input: {
display: "block",
height: 40,
margin: "auto",
marginTop: 10,
width: 240,
borderWidth: 1,
padding: 10
},
pressButton: {
fontWeight: "bold",
height: 40,
color: "white",
backgroundColor: constants.GREEN,
marginTop: 15,
borderWidth: 0,
borderRadius: 5,
width: Dimensions.get('window').width * 0.65,
padding: 10,
textColor: "white",
textAlign: 'center',
overflow: "hidden"
},
gridImage: {
width: Dimensions.get("window").width / 3,
height: Dimensions.get("window").width / 3
},
grid: {
width: Dimensions.get("window").width,
marginTop: -30
}
});