小红点位置调整 review by linen
Showing
1 changed file
with
3 additions
and
3 deletions
@@ -50,7 +50,7 @@ export default class MineListHeader extends React.Component { | @@ -50,7 +50,7 @@ export default class MineListHeader extends React.Component { | ||
50 | backgroundColor:'#d0021b', | 50 | backgroundColor:'#d0021b', |
51 | paddingLeft: 2.5, | 51 | paddingLeft: 2.5, |
52 | paddingRight: 2.5, | 52 | paddingRight: 2.5, |
53 | - paddingTop: 0.5, | 53 | + paddingTop: Platform.OS === 'ios' ? 1 : 0.5, |
54 | borderRadius: 7, | 54 | borderRadius: 7, |
55 | height: 14, | 55 | height: 14, |
56 | minWidth: 14, | 56 | minWidth: 14, |
@@ -95,7 +95,7 @@ export default class MineListHeader extends React.Component { | @@ -95,7 +95,7 @@ export default class MineListHeader extends React.Component { | ||
95 | backgroundColor:'#444444', | 95 | backgroundColor:'#444444', |
96 | paddingLeft: 2.5, | 96 | paddingLeft: 2.5, |
97 | paddingRight: 2.5, | 97 | paddingRight: 2.5, |
98 | - paddingTop: 0.5, | 98 | + paddingTop: Platform.OS === 'ios' ? 1 : 0.5, |
99 | borderRadius: 7, | 99 | borderRadius: 7, |
100 | height: 14, | 100 | height: 14, |
101 | minWidth: 14, | 101 | minWidth: 14, |
@@ -911,7 +911,7 @@ let styles = StyleSheet.create({ | @@ -911,7 +911,7 @@ let styles = StyleSheet.create({ | ||
911 | marginRight:10, | 911 | marginRight:10, |
912 | paddingLeft: 2.5, | 912 | paddingLeft: 2.5, |
913 | paddingRight: 2.5, | 913 | paddingRight: 2.5, |
914 | - paddingTop: 1.5, | 914 | + paddingTop: Platform.OS === 'ios' ? 1 : 0.5, |
915 | borderRadius: 7, | 915 | borderRadius: 7, |
916 | height: 14, | 916 | height: 14, |
917 | minWidth: 14, | 917 | minWidth: 14, |
-
Please register or login to post a comment