0
Fork 0
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:
Rish 2020-05-22 12:34:21 +05:30
parent 9432e4f166
commit 08a4611ee3
2 changed files with 2 additions and 2 deletions

View file

@ -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'}}

View file

@ -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>