Skip to content
Snippets Groups Projects
Unverified Commit 6f011118 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix wrong size of avatars in admin UI (#19457)

parent 267978d4
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ module HomeHelper ...@@ -23,7 +23,7 @@ module HomeHelper
else else
link_to(path || ActivityPub::TagManager.instance.url_for(account), class: 'account__display-name') do link_to(path || ActivityPub::TagManager.instance.url_for(account), class: 'account__display-name') do
content_tag(:div, class: 'account__avatar-wrapper') do content_tag(:div, class: 'account__avatar-wrapper') do
image_tag(full_asset_url(current_account&.user&.setting_auto_play_gif ? account.avatar_original_url : account.avatar_static_url), class: 'account__avatar') image_tag(full_asset_url(current_account&.user&.setting_auto_play_gif ? account.avatar_original_url : account.avatar_static_url), class: 'account__avatar', width: 46, height: 46)
end + end +
content_tag(:span, class: 'display-name') do content_tag(:span, class: 'display-name') do
content_tag(:bdi) do content_tag(:bdi) do
......
...@@ -359,8 +359,9 @@ ...@@ -359,8 +359,9 @@
vertical-align: initial !important; vertical-align: initial !important;
} }
&__interrelationships { tbody td.accounts-table__interrelationships {
width: 21px; width: 21px;
padding-right: 16px;
} }
.fa { .fa {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment