Skip to content

Commit

Permalink
fix white spacing on login form
Browse files Browse the repository at this point in the history
  • Loading branch information
valzav committed Jul 26, 2017
1 parent 7d4a2fe commit 5349525
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# Steemit.com


Expand Down
5 changes: 2 additions & 3 deletions src/app/components/modules/LoginForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class LoginForm extends Component {
<div className="info">{tt('loginform_jsx.this_operation_requires_your_key_or_master_password', {authType})}</div>
</div>}
<div>
<label htmlFor="saveLogin">
<label className="LoginForm__save-login" htmlFor="saveLogin">
{tt('loginform_jsx.keep_me_logged_in')} &nbsp;
<input id="saveLogin" type="checkbox" ref="pw" {...saveLogin.props} onChange={this.saveLoginToggle} disabled={submitting} /></label>
</div>
Expand All @@ -224,8 +224,7 @@ class LoginForm extends Component {
<div className="LoginForm row">
<div className="column">
{message}
<h3>{tt('loginform_jsx.returning_users')}<span className="OpAction">{title}</span></h3>
<br />
<h3>{tt('loginform_jsx.returning_users')}<span className="OpAction">{title}</span></h3>
{form}
</div>
</div>
Expand Down
8 changes: 7 additions & 1 deletion src/app/components/modules/LoginForm.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.LoginForm {
max-width: 28rem;
margin: 1rem auto 0.5rem auto;
label {
text-transform: none;
}
form {
max-width: 440px;
margin-top: 1.5rem;
}
.button.sign-up {
background-color: #4078C0 !important;
Expand All @@ -25,3 +27,7 @@
margin-bottom: 2rem;
}
}

.LoginForm__save-login {
margin-top: 0.5rem;
}

0 comments on commit 5349525

Please sign in to comment.