Skip to content

Commit

Permalink
Fix scroll view background color
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Malmed committed Feb 8, 2018
1 parent 225e563 commit 173cfc2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/SignIn.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class SignIn extends React.Component {

return (
<View style={styles.container}>
<ScrollView>
<ScrollView style={styles.scrollView}>
<View style={styles.signInContainer}>
<StyledText
textStyle={'headerText'}
Expand Down Expand Up @@ -139,12 +139,15 @@ export class SignIn extends React.Component {
}

const styles = EStyleSheet.create({
scrollView: {
backgroundColor: 'white',
},
container: {
flex: 1,
paddingTop: topPadding,
},
signInContainer: {
backgroundColor: 'white',
backgroundColor: 'transparent',
margin: 30,
marginTop: 20,
paddingLeft: 15,
Expand Down

0 comments on commit 173cfc2

Please sign in to comment.