filterbar style fixes

This commit is contained in:
feruz 2019-12-04 11:23:17 +02:00
parent 9bb84a7436
commit 38163107e0
3 changed files with 11 additions and 5 deletions

View File

@ -17,6 +17,7 @@ export default EStyleSheet.create({
paddingHorizontal: Platform.OS === 'android' ? 20 : 10,
justifyContent: 'center',
marginRight: 8,
marginLeft: 8,
height: 22,
backgroundColor: '$iconColor',
borderRadius: 50,
@ -26,9 +27,9 @@ export default EStyleSheet.create({
},
isFilterTextUnPin: {
color: '$primaryDarkGray',
fontSize: 14,
fontSize: 12,
},
isFilterTextPin: {
fontSize: 14,
fontSize: 12,
},
});

View File

@ -1,4 +1,7 @@
import EStyleSheet from 'react-native-extended-stylesheet';
import { Dimensions } from 'react-native';
const deviceWidth = Dimensions.get('window').width;
export default EStyleSheet.create({
container: {
@ -14,9 +17,10 @@ export default EStyleSheet.create({
},
dropdownWrapper: {
flexDirection: 'row',
justifyContent: 'center',
justifyContent: 'space-around',
alignItems: 'center',
left: 15,
left: 5,
flex: 6,
},
filterBarWrapper: {
flexDirection: 'row',
@ -24,7 +28,8 @@ export default EStyleSheet.create({
justifyContent: 'space-between',
},
rightIconWrapper: {
marginRight: 16,
flex: 1,
marginRight: 5,
alignSelf: 'center',
},
rightIcon: {