Login: fix remember me checkbox and forget password link

This commit is contained in:
Simon Lehericey 2017-09-07 18:06:24 +02:00
parent ea245a869d
commit d9e532684f
2 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,5 @@
@import "colors";
@import "constants";
@import "placeholders";
@import "mixins";
@ -60,7 +61,12 @@ $auth-breakpoint: 820px;
.auth-form {
.reset-password {
margin-top: 8px;
margin-top: - 3 * $default-spacer;
margin-bottom: $default-spacer;
}
.remember-me {
display: inline-block;
}
.separation {

View file

@ -38,7 +38,7 @@
- if devise_mapping.rememberable?
= f.check_box :remember_me, as: :boolean
= f.label :remember_me, "Se souvenir de moi"
= f.label :remember_me, "Se souvenir de moi", class: 'remember-me'
= f.submit "Se connecter", class: "button large primary expand"