style.ts
1005 Bytes
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
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'
import { subTitle, View, title, tips } from '../../theme/colors'
const styles = StyleSheet.create({
center: {
marginTop: setUnit(56)
},
container: {
backgroundColor: View.background,
flex: 1
},
copyright: {
color: subTitle,
marginTop: setUnit(24),
textAlign: 'center'
},
footer: {
alignItems: 'center',
paddingBottom: setUnit(48)
},
header: {
alignItems: 'center',
marginTop: setUnit(112)
},
logo: {
height: setUnit(160),
width: setUnit(160)
},
name: {
color: title,
fontSize: setUnit(40),
fontWeight: '500',
marginTop: setUnit(32)
},
private: {
color: tips,
fontSize: setUnit(26)
},
version: {
color: title,
fontSize: setUnit(32),
marginTop: setUnit(12)
}
})
export { styles }