Remove .d-block classes from auth buttons

Unnecessary on flex items.
This commit is contained in:
Anton Khorev 2024-07-09 17:21:34 +03:00
parent 1d15f96a70
commit 088a78d83c
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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 %>

View file

@ -117,7 +117,7 @@ class UserHelperTest < ActionView::TestCase
def test_auth_button
button = auth_button("google", "google")
img_tag = "<img alt=\"Google logo\" class=\"rounded-1\" src=\"/images/google.svg\" width=\"36\" height=\"36\" />"
assert_equal("<a class=\"auth_button btn btn-light p-2 d-block\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
assert_equal("<a class=\"auth_button btn btn-light p-2\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
end
private