Skip to content

Commit

Permalink
fix: bug where small androids couldn't find submit button
Browse files Browse the repository at this point in the history
  • Loading branch information
hopetambala committed Jun 12, 2021
1 parent 6887a84 commit 1eb5bfe
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ import {
const styles = StyleSheet.create({
assetContainer: {
width: Dimensions.get('window').width * 0.90,
margin: 20,
padding: 10,
textAlign: 'left',
// backgroundColor: 'white',
// borderColor: '#eaeaea',
// borderRadius: 10,
// borderWidth: 1,
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Dimensions, StyleSheet } from 'react-native';
const styles = StyleSheet.create({
assetContainer: {
width: Dimensions.get('window').width * 0.90,
padding: 10,
textAlign: 'left',
}
});
Expand Down
2 changes: 1 addition & 1 deletion domains/DataCollection/Assets/NewAssets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const styles = StyleSheet.create({
viewPager: {
flex: 1,
width: Dimensions.get('window').width,
height: Dimensions.get('window').height * 0.70
height: Dimensions.get('window').height * 0.65,
},
page: {
justifyContent: 'center',
Expand Down

0 comments on commit 1eb5bfe

Please sign in to comment.