From ef23fac0db7a26908ce068ff0085947e835f0ff4 Mon Sep 17 00:00:00 2001 From: Luca Guindani Date: Tue, 16 Apr 2024 10:12:13 +0200 Subject: [PATCH] Add margin for the submit button in reset password view --- app/views/devise/passwords/edit.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/devise/passwords/edit.html.erb b/app/views/devise/passwords/edit.html.erb index a9fcd8329..e452da003 100644 --- a/app/views/devise/passwords/edit.html.erb +++ b/app/views/devise/passwords/edit.html.erb @@ -20,7 +20,8 @@ <%= f.password_field( :password_confirmation, :label => t(".new_password_confirmation"), - :autocomplete => "new-password") %> + :autocomplete => "new-password", + :class => "mb-3") %> <%= f.primary(t(".submit")) %> <% end %>