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
|
import { Styles } from 'reactxp';
import { colors } from '../../config.json';
export default {
connect: Styles.createViewStyle({
flex: 1,
}),
map: Styles.createViewStyle({
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
// @ts-ignore
zIndex: 0,
}),
body: Styles.createViewStyle({
paddingTop: 0,
paddingLeft: 24,
paddingRight: 24,
paddingBottom: 0,
marginTop: 186,
flex: 1,
}),
container: Styles.createViewStyle({
flexDirection: 'column',
flex: 1,
position: 'relative' /* need this for z-index to work to cover map */,
// @ts-ignore
zIndex: 1,
}),
status_icon: Styles.createViewStyle({
position: 'absolute',
alignSelf: 'center',
width: 60,
height: 60,
marginTop: 94,
}),
notification_area: Styles.createViewStyle({
position: 'absolute',
left: 0,
top: 0,
right: 0,
}),
error_title: Styles.createTextStyle({
fontFamily: 'DINPro',
fontSize: 32,
fontWeight: '900',
lineHeight: 40,
color: colors.white,
marginBottom: 8,
}),
error_message: Styles.createTextStyle({
fontFamily: 'Open Sans',
fontSize: 13,
lineHeight: 20,
fontWeight: '600',
color: colors.white,
marginBottom: 24,
}),
};
|