-
Notifications
You must be signed in to change notification settings - Fork 13
/
styles.js
67 lines (65 loc) · 1.33 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
import { MediaQueryStyleSheet } from 'react-native-responsive'
import Colors from 'pangea-common-reactnative/styles/colors'
const styles = MediaQueryStyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'stretch',
},
infoContainer: {
paddingBottom: 20,
paddingTop: 10,
marginLeft: 8,
marginRight: 8,
borderRadius: 8,
backgroundColor: Colors.shadeOf(Colors.BitnationColor, 0.2),
alignItems: 'center',
},
header: {
backgroundColor: 'transparent',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'space-around',
marginBottom: 20,
},
achievementsContainer: {
marginTop: 8,
marginBottom: 10,
},
placeholder: {
resizeMode: 'contain',
},
avatar: {
height: 100,
width: 100,
borderRadius: 50,
},
nameText: {
fontSize: 28,
color: Colors.titleColor,
letterSpacing: 0,
textAlign: 'center',
backgroundColor: 'transparent',
},
infoText: {
fontSize: 16,
color: Colors.BitnationLightColor,
letterSpacing: -0.65,
lineHeight: 20.8,
textAlign: 'center',
backgroundColor: 'transparent',
},
ethAddress: {
fontSize: 14,
color: Colors.BitnationLightColor,
letterSpacing: -0.65,
lineHeight: 20.8,
textAlign: 'center',
backgroundColor: 'transparent',
},
fakeNavigationBar: {
height: 64,
backgroundColor: 'transparent',
},
})
export default styles