-
Notifications
You must be signed in to change notification settings - Fork 101
/
styles.ts
62 lines (60 loc) · 1.17 KB
/
styles.ts
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
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
actionButton: {
borderColor: "#0000BB",
borderWidth: 2,
},
error: {
color: "#AA0000",
borderColor: "#AA0000",
borderWidth: 2,
fontSize: 18,
padding: 10,
margin: 10,
marginTop: 20
},
connected: {
color: "#00AA00",
fontSize: 16,
},
disconnected: {
color: "#880000",
fontSize: 16
},
container: {
height: "100%",
width: "100%",
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
transportContainer: {
display: 'flex',
justifyContent: 'space-evenly',
height: "100%",
width: "100%",
backgroundColor: "#EEE",
borderColor: "#DDD",
borderWidth: 1,
paddingVertical: 5
},
textDuration: {
width: 40,
},
textCentered: {
textAlign: "center"
},
debugBorder: {
borderWidth: 1,
borderColor: 'red'
}
});
export default styles;