Skip to content

Commit

Permalink
Merge pull request #146 from ostdotcom/master
Browse files Browse the repository at this point in the history
style updated for login
  • Loading branch information
sunilkhedar authored Nov 14, 2019
2 parents f759dcb + 70fe41c commit 7b58424
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ios/Pepo2/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>20</string>
<string>22</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/Pepo2/InfoPlist/com.pepo.staging-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>20</string>
<string>22</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
4 changes: 2 additions & 2 deletions ios/Pepo2/InfoPlist/com.pepo.v2.production-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<string>com.pepo.v2.production</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
Expand Down Expand Up @@ -40,7 +40,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>20</string>
<string>22</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/Pepo2/InfoPlist/com.pepo.v2.sandbox-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>20</string>
<string>22</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
17 changes: 14 additions & 3 deletions src/components/LoginPopover/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,26 @@ class loginPopover extends React.Component {
<Image source={modalCross} style={{ width: 19.5, height: 19 }} />
</TouchableOpacity>
<Image source={loggedOutLogo} style={{ width: 261, height: 70, marginBottom: 20 }} />
<Text
style={[
inlineStyles.desc,
{
fontWeight: '500'
}
]}
>
Meet the people shaping the
</Text>
<Text
style={[
inlineStyles.desc,
{
fontWeight: '500',
marginBottom: 5
marginBottom: 15
}
]}
>
Meet the people shaping the crypto movement.
crypto movement.
</Text>
<TouchableButton
TouchableStyles={[
Expand All @@ -116,7 +126,8 @@ class loginPopover extends React.Component {
height: 55,
alignItems: 'center',
justifyContent: 'center',
width: '85%'
width: '85%',
marginBottom: 10
},
this.state.disableLoginBtn ? Theme.Button.disabled : null
]}
Expand Down
7 changes: 4 additions & 3 deletions src/components/LoginPopover/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ let stylesMap = {
backgroundColor: Colors.white,
alignItems: 'center',
justifyContent: 'center',
minHeight: Dimensions.get('window').height / 2,
minHeight: Dimensions.get('window').height / 2.3,
paddingTop: 50,
paddingBottom: 30,
paddingBottom: 40,
position: 'absolute',
width: '100%',
borderTopRightRadius: 20,
Expand Down Expand Up @@ -40,7 +40,8 @@ let stylesMap = {
color: Colors.dark,
fontSize: 18,
lineHeight: 26,
textAlign: 'center'
textAlign: 'center',
width: '85%'
},
tocPp: {
width: '85%',
Expand Down

0 comments on commit 7b58424

Please sign in to comment.