-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.js
48 lines (46 loc) · 879 Bytes
/
style.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
import {StyleSheet} from 'react-native';
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
marginLeft: 5,
marginRight: 5,
borderWidth: 0,
borderColor: '#ddd',
backgroundColor: '#fff',
elevation: 1,
borderRadius: 5,
shadowColor: '#000',
shadowOffset: {width: 0, height: 2},
shadowOpacity: 0.2,
shadowRadius: 2
},
cell: {
flex: 1,
borderColor: '#ddd',
minHeight: 40,
padding: 2,
alignItems: 'flex-end',
justifyContent: 'center'
},
cellText: {
color: '#000'
},
columnText: {
color: '#0000008a'
},
row: {
flexDirection: 'row',
borderBottomWidth: 1,
borderColor: '#ddd',
paddingLeft: 10,
paddingRight: 10
},
column: {
justifyContent: 'center'
},
cellInput: {
width: '100%',
textAlign: 'right'
}
});
export default styles;