-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcss.js
executable file
·68 lines (62 loc) · 1.32 KB
/
css.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 React from 'react';
import { StyleSheet } from 'react-native';
import { Constants } from 'expo';
const style = StyleSheet.create({
container : {
flex : 1,
paddingTop: Constants.statusBarHeight,
},
backbutton : {
flex : 1,
},
inputTag : {
flex : 20,
backgroundColor:'#ffffff',
alignItems: 'center',
justifyContent: 'center',
},
emailInput : {
height: 60,
width: '80%',
borderWidth: 1,
fontSize : 20
},
passwordInput : {
height: 60,
width: '80%',
borderWidth: 1
},
inputText : {
marginTop: 30,
fontSize : 20
},
signinButton : {
backgroundColor: 'white',
marginTop: 40,
},
submit: {
fontSize: 50
},
checkInput: {
marginTop: 30,
fontSize : 20,
color:'black'
},
modalStyle : {
flex : 1,
// flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
},
inModalStyle : {
height : "22.222%",
width : "71.242%",
borderColor: 'black',
borderWidth: 1.2,
borderStyle: 'solid',
backgroundColor : "white",
alignItems: 'center',
justifyContent: 'center',
},
})
export default style