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:
parent
bd844c3568
commit
2e429e8c8c
3 changed files with 4 additions and 4 deletions
|
@ -142,8 +142,8 @@ export default class App extends React.Component {
|
||||||
return {
|
return {
|
||||||
showPopup: true,
|
showPopup: true,
|
||||||
site: Fixtures.site,
|
site: Fixtures.site,
|
||||||
member: Fixtures.member.free,
|
member: Fixtures.member.paid,
|
||||||
page: 'signin'
|
page: 'signup'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return {};
|
return {};
|
||||||
|
|
|
@ -76,7 +76,7 @@ export default class SigninPage extends React.Component {
|
||||||
const disabled = isRunning ? true : false;
|
const disabled = isRunning ? true : false;
|
||||||
return (
|
return (
|
||||||
<ActionButton
|
<ActionButton
|
||||||
style={{width: '100%'}}
|
style={{width: '100%', height: '46px'}}
|
||||||
onClick={e => this.handleSignin(e)}
|
onClick={e => this.handleSignin(e)}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
brandColor={this.context.brandColor}
|
brandColor={this.context.brandColor}
|
||||||
|
|
|
@ -258,7 +258,7 @@ class SignupPage extends React.Component {
|
||||||
const disabled = (action === 'signup:running') ? true : false;
|
const disabled = (action === 'signup:running') ? true : false;
|
||||||
return (
|
return (
|
||||||
<ActionButton
|
<ActionButton
|
||||||
style={{width: '100%'}}
|
style={{width: '100%', height: '46px'}}
|
||||||
retry={retry}
|
retry={retry}
|
||||||
onClick={e => this.handleSignup(e)}
|
onClick={e => this.handleSignup(e)}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
|
|
Loading…
Add table
Reference in a new issue