-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
71 lines (59 loc) · 1.27 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
import { Platform } from "react-native";
import { StyleService } from "@ui-kitten/components";
const styles = StyleService.create({
paddedLayout: {
flex: 1,
paddingVertical: 10, // This should match the design system
paddingHorizontal: 20 // This should match the design system
},
centeredLayout: {
alignItems: "center",
flex: 1,
justifyContent: "center"
},
safeAreaView: {
backgroundColor: "background-basic-color-1",
flex: 1
},
list: {
backgroundColor: "background-basic-color-1"
},
subjectHeading: {
paddingLeft: 11
},
htmlViewer: {
color: "text-basic-color",
backgroundColor: "background-basic-color-1",
...Platform.select({
default: {
fontSize: "16px"
},
web: {
fontSize: "15px"
}
})
},
htmlViewerAnchor: {
color: "color-primary-default"
},
logo: {
fontFamily: "Nunito-Bold",
fontSize: 19,
letterSpacing: -0.5
},
drawer: {
borderRightColor: "background-basic-color-3",
borderRightWidth: 1,
width: 250
},
splitNavigator: {
alignItems: "stretch",
flexDirection: "row",
flex: 1
},
splitNavigatorColumn: {
borderColor: "background-basic-color-3",
borderRightWidth: 1,
}
});
export default styles;