summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-02-14 13:50:16 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-02-14 13:50:16 +0000
commit9ca80048a22ff7795809c8c935f5d34e2e4906bb (patch)
treed78605bd1aa6b44138b12bf16a99ace0414ebfe9 /app
parentfe6c534d473cef068a0a88d1a5cda9a7dd305e06 (diff)
parent9d61ea55d15aa5b201d9be6145d4c70db4fd0de8 (diff)
downloadgitlab-ce-9ca80048a22ff7795809c8c935f5d34e2e4906bb.tar.gz
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.
Diffstat (limited to 'app')
-rwxr-xr-x[-rw-r--r--]app/views/devise/passwords/new.html.haml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/devise/passwords/new.html.haml b/app/views/devise/passwords/new.html.haml
index a14ef2995c8..040821ca32a 100644..100755
--- a/app/views/devise/passwords/new.html.haml
+++ b/app/views/devise/passwords/new.html.haml
@@ -2,7 +2,8 @@
%h3.page-title Reset password
.devise-errors
= devise_error_messages!
- = f.email_field :email, placeholder: "Email", class: "form-control", required: true
+ .clearfix.append-bottom-20
+ = f.email_field :email, placeholder: "Email", class: "form-control", required: true
.clearfix.append-bottom-10
= f.submit "Reset password", class: "btn-primary btn"
%hr