diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb
index 3e779a00c..26ba2c528 100644
--- a/app/helpers/user_helper.rb
+++ b/app/helpers/user_helper.rb
@@ -64,7 +64,7 @@ module UserHelper
:size => "36"),
auth_path(options.merge(:provider => provider)),
:method => :post,
- :class => "auth_button btn btn-light p-2 d-block",
+ :class => "auth_button btn btn-light p-2",
:title => t("application.auth_providers.#{name}.title")
)
end
diff --git a/app/views/application/_auth_providers.html.erb b/app/views/application/_auth_providers.html.erb
index 564732d36..d2ff6865f 100644
--- a/app/views/application/_auth_providers.html.erb
+++ b/app/views/application/_auth_providers.html.erb
@@ -31,7 +31,7 @@
"#",
:id => "openid_open_url",
:title => t("application.auth_providers.openid.title"),
- :class => "btn btn-light p-2 d-block" %>
+ :class => "btn btn-light p-2" %>
<% %w[google facebook microsoft github wikipedia].each do |provider| %>
<% unless @preferred_auth_provider == provider %>
diff --git a/test/helpers/user_helper_test.rb b/test/helpers/user_helper_test.rb
index a415bd029..eaf406a06 100644
--- a/test/helpers/user_helper_test.rb
+++ b/test/helpers/user_helper_test.rb
@@ -117,7 +117,7 @@ class UserHelperTest < ActionView::TestCase
def test_auth_button
button = auth_button("google", "google")
img_tag = "
"
- assert_equal("#{img_tag}", button)
+ assert_equal("#{img_tag}", button)
end
private