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 {
|
||||
showPopup: true,
|
||||
site: Fixtures.site,
|
||||
member: Fixtures.member.free,
|
||||
page: 'signin'
|
||||
member: Fixtures.member.paid,
|
||||
page: 'signup'
|
||||
};
|
||||
}
|
||||
return {};
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue