Skip to content

Commit

Permalink
fix login button style (#479)
Browse files Browse the repository at this point in the history
previously the button was missing .btn and .btn-primary CSS classes
  • Loading branch information
gronke authored Nov 5, 2023
1 parent 01e2e82 commit 913ae16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<% end %>
<%= hidden_field_tag :redirect_to, params[:redirect_to] %>
<div class="actions form-group">
<%= f.submit t('.sign_in') %>
<%= f.submit t('.sign_in'), class: "btn btn-primary" %>
</div>
<% end %>

Expand Down

0 comments on commit 913ae16

Please sign in to comment.