Commit 9ca80048a22ff7795809c8c935f5d34e2e4906bb

Authored by Dmitriy Zaporozhets
2 parents fe6c534d 9d61ea55

Merge branch 'add-margin-to-reset-password-form' into 'master'

Add Margin To Reset Password Form

There currently is no margin between the reset-password input (email-address) and button. This is ugly. This commit is a simple fix.
Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
app/views/devise/passwords/new.html.haml 100644 → 100755
... ... @@ -2,7 +2,8 @@
2 2 %h3.page-title Reset password
3 3 .devise-errors
4 4 = devise_error_messages!
5   - = f.email_field :email, placeholder: "Email", class: "form-control", required: true
  5 + .clearfix.append-bottom-20
  6 + = f.email_field :email, placeholder: "Email", class: "form-control", required: true
6 7 .clearfix.append-bottom-10
7 8 = f.submit "Reset password", class: "btn-primary btn"
8 9 %hr
... ...