diff options
author | ThibG <thib@sitedethib.com> | 2020-05-13 21:20:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 21:20:34 +0200 |
commit | 48503384d00525fe61a038bdb8a55868fdc1db92 (patch) | |
tree | dd1cbf35a273c5e6c0a2c9b475f54a6d6919a6b7 /app/javascript/styles | |
parent | be1e2594fbfb4d5ebe7bc0d10d73af7d8ffbf03d (diff) |
Fix some account avatars on public pages having incorrect size (#13692)
* Fix some account avatars on public pages having incorrect size * Remove outdated and overridden width and height attributes * Remove more hardcoded width/height attributes
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/statuses.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/statuses.scss b/app/javascript/styles/mastodon/statuses.scss index 0b7be7afd..a8fd2936c 100644 --- a/app/javascript/styles/mastodon/statuses.scss +++ b/app/javascript/styles/mastodon/statuses.scss @@ -149,6 +149,11 @@ &__avatar { left: 15px; top: 17px; + + .account__avatar { + width: 48px; + height: 48px; + } } &__content { |