Move auth provider icons to auth_providers subdirectory

This commit is contained in:
Anton Khorev 2024-07-19 18:34:04 +03:00
parent f9ea6aa718
commit 80d7fe4cce
9 changed files with 5 additions and 5 deletions

View file

@ -54,7 +54,7 @@ module UserHelper
def auth_button(provider, options = {})
link_to(
image_tag("#{provider}.svg",
image_tag("auth_providers/#{provider}.svg",
:alt => t("application.auth_providers.#{provider}.alt"),
:class => "rounded-1",
:size => "36"),
@ -67,7 +67,7 @@ module UserHelper
def auth_button_preferred(provider, options = {})
link_to(
image_tag("#{provider}.svg",
image_tag("auth_providers/#{provider}.svg",
:alt => t("application.auth_providers.#{provider}.alt"),
:class => "rounded-1 me-3",
:size => "36") + t("application.auth_providers.#{provider}.title"),