From 087b2d4f6b86375fd9a0db1ebdbb10e8b304d38b Mon Sep 17 00:00:00 2001 From: David O'Regan <doregan@gitlab.com> Date: Fri, 24 Jun 2022 14:59:03 +0100 Subject: [PATCH] Fix LDAP sign in button padding Update LDAP sign-in to fix the broken padding under the sign-in button. Changelog: fixed --- app/views/devise/sessions/_new_ldap.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/devise/sessions/_new_ldap.html.haml b/app/views/devise/sessions/_new_ldap.html.haml index 4cde24f4afa8..d06043c17507 100644 --- a/app/views/devise/sessions/_new_ldap.html.haml +++ b/app/views/devise/sessions/_new_ldap.html.haml @@ -15,5 +15,5 @@ = check_box_tag :remember_me, '1', false, id: 'remember_me' %span= _('Remember me') - .submit-container.move-submit-down.gl-px-5 + .submit-container.move-submit-down.gl-px-5.gl-pb-5 = submit_tag submit_message, class: "gl-button btn btn-confirm", data: { qa_selector: 'sign_in_button' } -- GitLab