-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.tsx
62 lines (60 loc) · 1.16 KB
/
styles.tsx
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
import { StyleSheet } from "react-native";
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 12,
backgroundColor: "#000",
alignItems: "center",
justifyContent: "center",
},
demoItemContainer: {
backgroundColor: "#1A1A1A",
padding: 12,
marginBottom: 10,
borderRadius: 8,
},
demoItemTitle: {
color: "#fff",
fontSize: 16,
fontWeight: "bold",
marginBottom: 4,
},
demoItemTitleSecondary: {
color: "#fff",
fontSize: 16,
fontWeight: "bold",
marginBottom: 4,
opacity: 0.5,
},
demoItemText: {
color: "#fff",
fontSize: 14,
},
demoItemTextSecondary: {
color: "#fff",
opacity: 0.5,
},
emailAuthContainer: {
position: "absolute",
zIndex: 100,
top: -100,
left: 0,
right: 0,
bottom: 0,
backgroundColor: "rgba(0, 0, 0, 0.5)",
alignItems: "center",
justifyContent: "center",
},
emailConflictContainer: {
position: "absolute",
zIndex: 101,
top: -100,
left: 0,
right: 0,
bottom: 0,
backgroundColor: "rgba(0, 0, 0, 0.5)",
alignItems: "center",
justifyContent: "center",
},
});
export default styles;