mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed page switch message UI margin
no issue - Adds margin for page switch message between signup/signin at bottom
This commit is contained in:
parent
9432e4f166
commit
08a4611ee3
2 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ export default class SigninPage extends React.Component {
|
|||
renderSignupMessage() {
|
||||
const brandColor = this.context.brandColor;
|
||||
return (
|
||||
<div style={{display: 'flex', justifyContent: 'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'center', marginTop: '12px'}}>
|
||||
<div style={{marginRight: '6px', color: '#929292'}}> Don't have an account ? </div>
|
||||
<div
|
||||
style={{color: brandColor, fontWeight: 'bold', cursor: 'pointer'}}
|
||||
|
|
|
@ -104,7 +104,7 @@ class SignupPage extends React.Component {
|
|||
renderLoginMessage() {
|
||||
const {brandColor, onAction} = this.context;
|
||||
return (
|
||||
<div style={{display: 'flex', justifyContent: 'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'center', marginTop: '12px'}}>
|
||||
<div style={{marginRight: '6px', color: '#929292'}}> Already a member ? </div>
|
||||
<div style={{color: brandColor, fontWeight: 'bold', cursor: 'pointer'}} role="button" onClick={() => onAction('switchPage', {page: 'signin'})}> Log in </div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue