Fixed promote slider issues

This commit is contained in:
Mustafa Buyukcelebi 2019-08-29 10:54:20 +03:00
parent b2bee19402
commit da57e2d68e
3 changed files with 1 additions and 4 deletions

View File

@ -21,7 +21,6 @@ export default EStyleSheet.create({
borderRadius: 7, borderRadius: 7,
borderWidth: 0, borderWidth: 0,
top: 12, top: 12,
zIndex: 999,
}, },
container: { container: {
justifyContent: 'center', justifyContent: 'center',
@ -39,7 +38,6 @@ export default EStyleSheet.create({
borderRadius: 17, borderRadius: 17,
backgroundColor: '$white', backgroundColor: '$white',
borderWidth: 1, borderWidth: 1,
position: 'absolute',
borderColor: '$primaryBlue', borderColor: '$primaryBlue',
}, },
selected: { selected: {

View File

@ -58,7 +58,7 @@ export default class ScaleSliderView extends Component {
return ( return (
<View> <View>
<View style={[styles.column, { marginLeft: LRpadding, marginRight: LRpadding }]}> <View style={[styles.column, { marginLeft: LRpadding - 10, marginRight: LRpadding - 10 }]}>
{this._renderScale()} {this._renderScale()}
</View> </View>
<View style={styles.container}> <View style={styles.container}>

View File

@ -42,7 +42,6 @@ export default EStyleSheet.create({
borderColor: '$borderColor', borderColor: '$borderColor',
borderRadius: 8, borderRadius: 8,
padding: 2, padding: 2,
color: '$primaryBlack',
width: 172, width: 172,
marginRight: 33, marginRight: 33,
}, },