Authored by 张丽霞

fix bug 资讯详情赞分割线左右间距、navigation bar的title及button不居中; review by:于良

... ... @@ -426,7 +426,7 @@ let styles = StyleSheet.create({
backgroundColor: '#F0F0F0',
},
navTitle: {
color: 'white',
color: 'white',
marginLeft: 60,
marginRight: 60,
},
... ... @@ -436,9 +436,9 @@ let styles = StyleSheet.create({
marginTop: 3.5,
},
rightButton: {
width: 60,
// right: 6,
// marginTop: 3.5,
width: 60,
right: 6,
marginTop: 3.5,
},
barRightButtonText: {
color: 'white',
... ...
... ... @@ -44,7 +44,7 @@ import _backButtonImage from '../images/home/menu_back1.png';
const styles = StyleSheet.create({
title: {
textAlign: 'center',
marginTop: 10,
marginTop: 16,
fontSize: 18,
fontWeight: '500',
color: '#0A0A0A',
... ...
... ... @@ -93,10 +93,13 @@ export default class LikeList extends React.Component {
let styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'white',
},
row: {
justifyContent: 'center',
backgroundColor: 'white',
marginLeft: 15,
marginRight: 15,
},
userBrief: {
height: 60,
... ... @@ -105,5 +108,7 @@ let styles = StyleSheet.create({
separator: {
height: 0.5,
backgroundColor: '#e0e0e0',
marginLeft: 15,
marginRight: 15,
},
});
... ...