Skip to content

Commit

Permalink
Merge pull request #6 from vigzmv/sizing_issues
Browse files Browse the repository at this point in the history
Fix info box sizing
  • Loading branch information
vigzmv committed Jul 10, 2017
2 parents 8ba6a63 + a7ff641 commit b7f1d80
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions styles/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ module.exports = StyleSheet.create({
},

langs: {
height: Dimensions.get('window').height - 100,
width: Dimensions.get('window').width - 80,
height: Dimensions.get('window').height / 1.20,
width: Dimensions.get('window').width / 1.14,
paddingBottom: 10,
},

infoBox: {
height: Dimensions.get('window').height - 480,
width: Dimensions.get('window').width - 100,
height: Dimensions.get('window').height / 2.7,
width: Dimensions.get('window').width / 1.2,
justifyContent: 'center',
alignItems: 'center',
padding: 30,
padding: 25,
},

infoText: {
Expand All @@ -67,7 +67,7 @@ module.exports = StyleSheet.create({
listBoxes: {
borderBottomWidth: 1,
borderBottomColor: '#CFD8DC',
width: Dimensions.get('window').width - 90,
width: Dimensions.get('window').width / 1.15,
justifyContent: 'center',
alignItems: 'center',
},
Expand Down

0 comments on commit b7f1d80

Please sign in to comment.