-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.js
90 lines (87 loc) · 2.07 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import { Dimensions, StyleSheet } from 'react-native';
import { vw, vh, vmin, vmax } from 'react-native-expo-viewport-units';
const styles = StyleSheet.create({
container: {
display: 'flex',
flexDirection: 'column',
flex: 1,
backgroundColor: 'rgb(10 10 14)',
alignItems: 'center',
justifyContent: 'center',
width: '100%',
height: "100%",
},
wrapper: {
backgroundColor: 'rgb(22 22 35)',
display: 'flex',
flexDirection: 'column',
alignItems: 'stretch',
justifyContent: 'center',
padding: 25,
borderRadius: 15,
width: '70%',
gap: 30,
color: 'white',
},
buttonsContainer: {
display: 'flex',
flexDirection: 'column',
alignItems: 'stretch',
justifyContent: 'center',
gap: 15,
},
button: {
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#1a56db',
borderRadius: 8,
padding: 10,
},
text: {
color: 'white',
},
headWrapper: {
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
width: '70%',
},
header: {
position: 'absolute',
top: 30,
lef: 0,
width: '100%',
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
padding: 15,
},
wrapperSnack: {
backgroundColor: 'rgb(22 22 35)',
display: 'flex',
flexDirection: 'column',
alignItems: 'stretch',
justifyContent: 'center',
padding: 15,
borderRadius: 8,
width: '85%',
gap: 10,
color: 'white',
},
image: {
width: '100%',
height: vw(16),
},
back: {
top: 12,
display: 'flex',
flexDirection: 'row',
alignItems: 'flex-start',
justifyContent: 'center',
height: 85
}
});
export { styles };