removed unneccesary division

This commit is contained in:
ue 2018-09-26 00:05:17 +03:00
parent e7a6eec1b6
commit c65bb287f8
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ const styles = {
flex: 1,
paddingHorizontal: 7,
backgroundColor: "#f9f9f9",
minWidth: Dimensions.get("window").width / 1,
minWidth: Dimensions.get("window").width,
},
container: {
backgroundColor: "#F9F9F9",

View File

@ -50,7 +50,7 @@ const styles = createStyle({
flex: 1,
paddingHorizontal: 7,
backgroundColor: "#f9f9f9",
minWidth: Dimensions.get("window").width / 1,
minWidth: Dimensions.get("window").width,
},
loginButton: {
alignSelf: "center",