-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.ts
50 lines (49 loc) · 1.06 KB
/
styles.ts
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
import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
amountSummary: {
height: 100,
alignItems: "center",
justifyContent: "center",
},
white: {
color: "#fff"
},
roundTabButton: {
backgroundColor: "#607d8b",
borderRadius: 40,
elevation: 6,
paddingVertical: 10,
paddingHorizontal: 20,
marginRight: 5,
marginLeft: 5
},
roundTabButtonSelected: {
backgroundColor: "#e91e63",
},
roundTabButtonText: {
},
button: {
alignItems: 'center',
justifyContent: 'center',
paddingVertical: 12,
paddingHorizontal: 32,
elevation: 6,
backgroundColor: '#FFD700'
},
vCenterContent: {
marginTop: "auto",
marginBottom: 50
},
actionText: {
color: "#303030",
fontSize: 20,
textAlign: "center",
},
content: {
backgroundColor: "#303030",
flex: 1
},
bgDark: {
backgroundColor: "#303030"
}
});