-
Notifications
You must be signed in to change notification settings - Fork 8
/
common.styles.js
63 lines (62 loc) · 941 Bytes
/
common.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
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
bgImage: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
borderRadius: 8,
},
container: {
borderRadius: 8,
borderWidth: 0,
flex: 0,
},
logo: {
height: 35,
width: 57,
position: 'absolute',
top: 20,
right: 20,
},
text: {
color: '#fff',
},
front: {
flex: 1,
padding: 15,
},
back: {
flex: 1,
padding: 20,
},
info: {
flex: 1,
},
bar: {
height: 40,
position: 'absolute',
left: 0,
right: 0,
top: 30,
backgroundColor: '#000',
},
column: {
flex: 1,
flexDirection: 'column',
justifyContent: 'space-between',
},
row: {
flex: 1,
flexDirection: 'row',
justifyContent: 'space-between',
},
rowNoSpaceBetween: {
flex: 1,
flexDirection: 'row',
},
title: {
fontSize: 10,
},
});