fix bug 资讯详情赞分割线左右间距、navigation bar的title及button不居中; review by:于良
Showing
3 changed files
with
10 additions
and
5 deletions
@@ -426,7 +426,7 @@ let styles = StyleSheet.create({ | @@ -426,7 +426,7 @@ let styles = StyleSheet.create({ | ||
426 | backgroundColor: '#F0F0F0', | 426 | backgroundColor: '#F0F0F0', |
427 | }, | 427 | }, |
428 | navTitle: { | 428 | navTitle: { |
429 | - color: 'white', | 429 | + color: 'white', |
430 | marginLeft: 60, | 430 | marginLeft: 60, |
431 | marginRight: 60, | 431 | marginRight: 60, |
432 | }, | 432 | }, |
@@ -436,9 +436,9 @@ let styles = StyleSheet.create({ | @@ -436,9 +436,9 @@ let styles = StyleSheet.create({ | ||
436 | marginTop: 3.5, | 436 | marginTop: 3.5, |
437 | }, | 437 | }, |
438 | rightButton: { | 438 | rightButton: { |
439 | - width: 60, | ||
440 | - // right: 6, | ||
441 | - // marginTop: 3.5, | 439 | + width: 60, |
440 | + right: 6, | ||
441 | + marginTop: 3.5, | ||
442 | }, | 442 | }, |
443 | barRightButtonText: { | 443 | barRightButtonText: { |
444 | color: 'white', | 444 | color: 'white', |
@@ -44,7 +44,7 @@ import _backButtonImage from '../images/home/menu_back1.png'; | @@ -44,7 +44,7 @@ import _backButtonImage from '../images/home/menu_back1.png'; | ||
44 | const styles = StyleSheet.create({ | 44 | const styles = StyleSheet.create({ |
45 | title: { | 45 | title: { |
46 | textAlign: 'center', | 46 | textAlign: 'center', |
47 | - marginTop: 10, | 47 | + marginTop: 16, |
48 | fontSize: 18, | 48 | fontSize: 18, |
49 | fontWeight: '500', | 49 | fontWeight: '500', |
50 | color: '#0A0A0A', | 50 | color: '#0A0A0A', |
@@ -93,10 +93,13 @@ export default class LikeList extends React.Component { | @@ -93,10 +93,13 @@ export default class LikeList extends React.Component { | ||
93 | let styles = StyleSheet.create({ | 93 | let styles = StyleSheet.create({ |
94 | container: { | 94 | container: { |
95 | flex: 1, | 95 | flex: 1, |
96 | + backgroundColor: 'white', | ||
96 | }, | 97 | }, |
97 | row: { | 98 | row: { |
98 | justifyContent: 'center', | 99 | justifyContent: 'center', |
99 | backgroundColor: 'white', | 100 | backgroundColor: 'white', |
101 | + marginLeft: 15, | ||
102 | + marginRight: 15, | ||
100 | }, | 103 | }, |
101 | userBrief: { | 104 | userBrief: { |
102 | height: 60, | 105 | height: 60, |
@@ -105,5 +108,7 @@ let styles = StyleSheet.create({ | @@ -105,5 +108,7 @@ let styles = StyleSheet.create({ | ||
105 | separator: { | 108 | separator: { |
106 | height: 0.5, | 109 | height: 0.5, |
107 | backgroundColor: '#e0e0e0', | 110 | backgroundColor: '#e0e0e0', |
111 | + marginLeft: 15, | ||
112 | + marginRight: 15, | ||
108 | }, | 113 | }, |
109 | }); | 114 | }); |
-
Please register or login to post a comment