...
|
...
|
@@ -130,21 +130,21 @@ let styles = StyleSheet.create({ |
|
|
lineHeight: 22,
|
|
|
},
|
|
|
footContainer: {
|
|
|
width: rowWidth-20,
|
|
|
width: Platform.OS === 'ios' ? rowWidth-20 : rowWidth-16,
|
|
|
height: 18,
|
|
|
flexDirection: 'row',
|
|
|
alignItems: 'center',
|
|
|
},
|
|
|
clockImage: {
|
|
|
width: 12,
|
|
|
height: 12,
|
|
|
width: Platform.OS === 'ios' ? 12 : 9,
|
|
|
height: Platform.OS === 'ios' ? 12 : 9,
|
|
|
marginRight: 0,
|
|
|
},
|
|
|
eyeImage: {
|
|
|
width: 16,
|
|
|
height: 12,
|
|
|
width: Platform.OS === 'ios' ? 16 : 12,
|
|
|
height: Platform.OS === 'ios' ? 12 : 9,
|
|
|
marginRight: 0,
|
|
|
marginLeft: 10,
|
|
|
marginLeft: Platform.OS === 'ios' ? 10 : 7,
|
|
|
},
|
|
|
text: {
|
|
|
fontSize: 10,
|
...
|
...
|
|