0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Updated sign up/in button height

This commit is contained in:
Peter Zimon 2020-08-27 17:08:49 +02:00
parent bd844c3568
commit 2e429e8c8c
3 changed files with 4 additions and 4 deletions

View file

@ -142,8 +142,8 @@ export default class App extends React.Component {
return {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.free,
page: 'signin'
member: Fixtures.member.paid,
page: 'signup'
};
}
return {};

View file

@ -76,7 +76,7 @@ export default class SigninPage extends React.Component {
const disabled = isRunning ? true : false;
return (
<ActionButton
style={{width: '100%'}}
style={{width: '100%', height: '46px'}}
onClick={e => this.handleSignin(e)}
disabled={disabled}
brandColor={this.context.brandColor}

View file

@ -258,7 +258,7 @@ class SignupPage extends React.Component {
const disabled = (action === 'signup:running') ? true : false;
return (
<ActionButton
style={{width: '100%'}}
style={{width: '100%', height: '46px'}}
retry={retry}
onClick={e => this.handleSignup(e)}
disabled={disabled}