From a696d2b24c1eaafaac8b9ebca98b64e78521dc71 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Mon, 8 Jul 2024 17:24:48 +0300 Subject: [PATCH 1/1] Remove unnecessary classes from preferred auth button .rounded is the default rounding for this button type. .fs-6 is the default font size for this button type. --- app/helpers/user_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb index d767cb887..5da0a75fd 100644 --- a/app/helpers/user_helper.rb +++ b/app/helpers/user_helper.rb @@ -77,7 +77,7 @@ module UserHelper :size => "36") + t("application.auth_providers.#{name}.title"), auth_path(options.merge(:provider => provider)), :method => :post, - :class => "auth_button btn btn-outline-secondary fs-6 border rounded py-2 px-4 d-flex justify-content-center align-items-center", + :class => "auth_button btn btn-outline-secondary border py-2 px-4 d-flex justify-content-center align-items-center", :title => t("application.auth_providers.#{name}.title") ) end -- 2.39.5