style.js
825 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
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff'
},
header: {
marginTop: setUnit(112),
alignItems: 'center'
},
logo: {
width: setUnit(160),
height: setUnit(160)
},
name: {
marginTop: setUnit(32),
color: '#262626',
fontWeight: '500',
fontSize: setUnit(40)
},
version: {
marginTop: setUnit(12),
color: '#262626',
fontSize: setUnit(32)
},
center: {
marginTop: setUnit(56)
},
footer: {
alignItems: 'center',
paddingBottom: setUnit(48)
},
private: {
fontSize: setUnit(26),
color: '#6292D0'
},
copyright: {
marginTop: setUnit(24),
textAlign: 'center',
color: '#8c8c8c',
}
})
export { styles }