forked from codeforboston/plogalong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
74 lines (60 loc) · 1.25 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
import {
StyleSheet,
} from 'react-native';
import Colors from './constants/Colors';
export default StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
padding: 20
},
form: {
flexDirection: 'column'
},
inputGroup: {
marginBottom: 10,
paddingTop: 20,
},
textInput: {
borderColor: Colors.borderColor,
borderWidth: 1,
fontSize: 18,
padding: 10,
},
inputLabel: {
marginBottom: 10
},
button: {
borderRadius: 5,
borderColor: Colors.secondaryColor,
borderWidth: 2,
margin: 5,
overflow: 'hidden',
padding: 5,
},
largeButton: {
marginLeft: 40,
marginRight: 40,
marginTop: 20,
paddingTop: 10,
paddingBottom: 10,
},
primaryButton: {
backgroundColor: Colors.secondaryColor,
color: 'white',
},
textButton: {
textAlign: 'center'
},
activeButton: {
backgroundColor: '#4a8835',
},
link: {
color: Colors.tintColor,
textDecorationLine: 'underline',
},
helpLink: {
textDecorationStyle: 'dotted',
textDecorationColor: 'black',
}
});