-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.ts
More file actions
51 lines (50 loc) · 929 Bytes
/
styles.ts
File metadata and controls
51 lines (50 loc) · 929 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
48
49
50
51
import {StyleSheet} from 'react-native';
export const styles = StyleSheet.create({
view: {
backgroundColor: '#41B3A3',
},
scrollView: {
with: '100%',
height: '100%',
},
headerName: {
position: 'absolute',
textAlign: 'center',
fontWeight: 'bold',
fontSize: 13,
color: 'black',
zIndex: 12,
top: 20,
left: 100,
},
header: {
position: 'absolute',
backgroundColor: 'white',
paddingHorizontal: 20,
top: 0,
left: 0,
right: 0,
zIndex: 10,
},
contentRow: {
flexDirection: 'row',
paddingHorizontal: 20,
},
profileDetailRow: {
flexDirection: 'row',
alignItems: 'center',
},
name: {
color: 'black',
paddingTop: 20,
fontSize: 25,
textAlign: 'center',
fontWeight: 'bold',
},
scrollContent: {
justifyContent: 'center',
alignItems: 'center',
paddingHorizontal: 20,
paddingTop: 20,
},
});