diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-09 00:56:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-09 00:56:16 +0100 |
commit | c36b9cc5a6cf3feacb925213f5530c90dd31fa7a (patch) | |
tree | 295c8c1a1930c17b960d305d5b7571924294d023 /app/javascript/styles | |
parent | 70ce2a20956347b42f0b55cfcde42b6e83aee400 (diff) |
Ensure link thumbnails are not stretched to super low quality (#5932)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index dd61dc519..f76470da7 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2273,14 +2273,19 @@ button.icon-button.active i.fa-retweet { .status-card__image-image { border-radius: 4px 4px 0 0; } + + .status-card__title { + white-space: inherit; + } } .status-card__image-image { border-radius: 4px 0 0 4px; display: block; - height: auto; margin: 0; width: 100%; + height: 100%; + object-fit: cover; } .load-more { |